Fixed Syncthing folder status events and exec command.
[src/xds/xds-agent.git] / lib / agent / apiv1-version.go
index c2387c1..6b4923f 100644 (file)
@@ -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
                }