aboutsummaryrefslogtreecommitdiff
path: root/weed/server/volume_server.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-10-15 01:19:15 -0700
committerChris Lu <chris.lu@gmail.com>2018-10-15 01:19:15 -0700
commitfda771c83fd2702dc791244065b5886e5a3b9df2 (patch)
treee566188618dc37cbc451fa57fb5046e7f5676798 /weed/server/volume_server.go
parentb423bb9e2def089f57406ce8476c08f3de8436e9 (diff)
downloadseaweedfs-fda771c83fd2702dc791244065b5886e5a3b9df2.tar.xz
seaweedfs-fda771c83fd2702dc791244065b5886e5a3b9df2.zip
migrate volume sync status to grpc API on volume server
Diffstat (limited to 'weed/server/volume_server.go')
-rw-r--r--weed/server/volume_server.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/weed/server/volume_server.go b/weed/server/volume_server.go
index 59874d51c..e94211c11 100644
--- a/weed/server/volume_server.go
+++ b/weed/server/volume_server.go
@@ -47,7 +47,6 @@ func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
handleStaticResources(adminMux)
adminMux.HandleFunc("/ui/index.html", vs.uiStatusHandler)
adminMux.HandleFunc("/status", vs.guard.WhiteList(vs.statusHandler))
- adminMux.HandleFunc("/admin/sync/status", vs.guard.WhiteList(vs.getVolumeSyncStatusHandler))
adminMux.HandleFunc("/admin/sync/index", vs.guard.WhiteList(vs.getVolumeIndexContentHandler))
adminMux.HandleFunc("/admin/sync/data", vs.guard.WhiteList(vs.getVolumeDataContentHandler))
adminMux.HandleFunc("/admin/volume/mount", vs.guard.WhiteList(vs.getVolumeMountHandler))