summaryrefslogtreecommitdiffstats
path: root/lib/agent/apiv1-version.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/agent/apiv1-version.go')
-rw-r--r--lib/agent/apiv1-version.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/agent/apiv1-version.go b/lib/agent/apiv1-version.go
index c2387c1..6b4923f 100644
--- a/lib/agent/apiv1-version.go
+++ b/lib/agent/apiv1-version.go
@@ -33,7 +33,7 @@ func (s *APIService) getVersion(c *gin.Context) {
svrVer := []version{}
for _, svr := range s.xdsServers {
res := version{}
- if err := svr.HTTPGet("/version", &res); err != nil {
+ if err := svr.GetVersion(&res); err != nil {
common.APIError(c, "Cannot retrieve version of XDS server ID %s : %v", svr.ID, err.Error())
return
}