diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-29 11:19:00 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-29 15:17:45 +0100 |
commit | 7c7d90a781082c6bd22d12a5e2451ca61a5198af (patch) | |
tree | 980c4ebea211b1a757343296debc39b3aa6b4859 /lib/agent/webserver.go | |
parent | b9239d295a7fb7e3f5c595887b3bf77d50c8b216 (diff) |
Renamed apiv1 lib to xaapiv1.
xa prefix (for Xds Agent) is safest to avoid confusion with xs prefix (for Xds Server)
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'lib/agent/webserver.go')
-rw-r--r-- | lib/agent/webserver.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/agent/webserver.go b/lib/agent/webserver.go index 13572b4..c9f3acd 100644 --- a/lib/agent/webserver.go +++ b/lib/agent/webserver.go @@ -11,7 +11,7 @@ import ( "github.com/gin-contrib/static" "github.com/gin-gonic/gin" "github.com/googollee/go-socket.io" - "github.com/iotbzh/xds-agent/lib/apiv1" + "github.com/iotbzh/xds-agent/lib/xaapiv1" ) // WebServer . @@ -233,7 +233,7 @@ func (s *WebServer) socketHandler(c *gin.Context) { so.On("disconnection", func() { s.Log.Debugf("WS disconnected (WSID=%s, SID=%s)", so.Id(), sess.ID) - s.events.UnRegister(apiv1.EVTAll, sess.ID) + s.events.UnRegister(xaapiv1.EVTAll, sess.ID) s.sessions.UpdateIOSocket(sess.ID, nil) }) }) |