Make sure client initializes to proper lock RPC path. (#3763)

Fixes a regression introduced in previous commit.
This commit is contained in:
Harshavardhana
2017-02-18 02:52:11 -08:00
committed by GitHub
parent 50b4e54a75
commit 34d9a6b46a
3 changed files with 4 additions and 4 deletions

View File

@@ -234,7 +234,7 @@ func registerStorageRPCRouters(mux *router.Router, srvCmdConfig serverCmdConfig)
}
// Add minio storage routes.
storageRouter := mux.PathPrefix(minioReservedBucketPath).Subrouter()
storageRouter.Path(path.Join("/storage", stServer.path)).Handler(storageRPCServer)
storageRouter.Path(path.Join(storageRPCPath, stServer.path)).Handler(storageRPCServer)
}
return nil
}