aboutsummaryrefslogtreecommitdiff
path: root/weed/server/volume_server.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-10-15 00:03:55 -0700
committerChris Lu <chris.lu@gmail.com>2018-10-15 00:03:55 -0700
commit8301519fb0b339408c6d32a1ef940a46d70f41dc (patch)
treefed93a752e0dd7fc2ee6b290aed7e805b9ad5fe3 /weed/server/volume_server.go
parentdb152ca54041694f30495a9de96bb891ecc71f8a (diff)
downloadseaweedfs-8301519fb0b339408c6d32a1ef940a46d70f41dc.tar.xz
seaweedfs-8301519fb0b339408c6d32a1ef940a46d70f41dc.zip
migrate delete collection 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 238330abb..64eeb0d79 100644
--- a/weed/server/volume_server.go
+++ b/weed/server/volume_server.go
@@ -48,7 +48,6 @@ func NewVolumeServer(adminMux, publicMux *http.ServeMux, ip string,
adminMux.HandleFunc("/ui/index.html", vs.uiStatusHandler)
adminMux.HandleFunc("/status", vs.guard.WhiteList(vs.statusHandler))
adminMux.HandleFunc("/admin/assign_volume", vs.guard.WhiteList(vs.assignVolumeHandler))
- adminMux.HandleFunc("/admin/delete_collection", vs.guard.WhiteList(vs.deleteCollectionHandler))
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))