aboutsummaryrefslogtreecommitdiff
path: root/weed/server/volume_server.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-10-15 21:44:41 -0700
committerChris Lu <chris.lu@gmail.com>2018-10-15 21:44:41 -0700
commiteec951cad2b276afb1a416152b049e380706ebed (patch)
tree6ef348a3db597b0808a3f34bee2887f0d3dbcabd /weed/server/volume_server.go
parentf8b2d3cacc8d8724a7082c9587e8157a3db64a7b (diff)
downloadseaweedfs-eec951cad2b276afb1a416152b049e380706ebed.tar.xz
seaweedfs-eec951cad2b276afb1a416152b049e380706ebed.zip
migrate volume sync to gRpc
Diffstat (limited to 'weed/server/volume_server.go')
-rw-r--r--weed/server/volume_server.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/weed/server/volume_server.go b/weed/server/volume_server.go
index c0f3ef97e..0914e81b0 100644
--- a/weed/server/volume_server.go
+++ b/weed/server/volume_server.go
@@ -47,8 +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/index", vs.guard.WhiteList(vs.getVolumeIndexContentHandler))
- adminMux.HandleFunc("/admin/sync/data", vs.guard.WhiteList(vs.getVolumeDataContentHandler))
adminMux.HandleFunc("/stats/counter", vs.guard.WhiteList(statsCounterHandler))
adminMux.HandleFunc("/stats/memory", vs.guard.WhiteList(statsMemoryHandler))
adminMux.HandleFunc("/stats/disk", vs.guard.WhiteList(vs.statsDiskHandler))