10666: Replaced 'version' package with 'version' var
[arvados.git] / services / ws / router.go
index 5fa16743520dd2eb93a3eb4cdcead5824a327186..987c225eac8ba5a456aa0c2af2e7f56eede749be 100644 (file)
@@ -15,7 +15,6 @@ import (
 
        "git.curoverse.com/arvados.git/sdk/go/ctxlog"
        "git.curoverse.com/arvados.git/sdk/go/health"
-       arvadosVersion "git.curoverse.com/arvados.git/sdk/go/version"
        "github.com/Sirupsen/logrus"
        "golang.org/x/net/websocket"
 )
@@ -124,7 +123,7 @@ func (rtr *router) DebugStatus() interface{} {
 func (rtr *router) Status() interface{} {
        return map[string]interface{}{
                "Clients": atomic.LoadInt64(&rtr.status.ReqsActive),
-               "Version": arvadosVersion.GetVersion(),
+               "Version": version,
        }
 }