commit | cac73acc089ec4476394eec55085099f5cb85a7b | [log] [tgz] |
---|---|---|
author | David K. Bainbridge <dbainbri@ciena.com> | Wed Feb 19 07:00:12 2020 -0800 |
committer | David K. Bainbridge <dbainbri@ciena.com> | Wed Feb 19 07:00:12 2020 -0800 |
tree | dfbd9e1cf9ddb2a5269c0eee434b83045e3fffe4 | |
parent | 9cb404e14ba4a70e4a708ee9e0ebb6a5eafc0058 [diff] [blame] |
VOL-2625 - fix SCA issues Change-Id: If32cc66371f53040dc242679934a642a9488221a
diff --git a/internal/pkg/openflow/getConfig.go b/internal/pkg/openflow/getConfig.go index 1d92c9c..da5c473 100644 --- a/internal/pkg/openflow/getConfig.go +++ b/internal/pkg/openflow/getConfig.go
@@ -41,5 +41,7 @@ "device-id": ofc.DeviceID, "reply": js}) } - ofc.SendMessage(reply) + if err := ofc.SendMessage(reply); err != nil { + log.Errorw("handle-get-config-request-send-message", log.Fields{"error": err}) + } }