diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-10-14 23:12:43 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-10-14 23:12:43 -0700 |
| commit | b1daede91bca63bf2ca3019f622e763d35969e4f (patch) | |
| tree | 2078fd7bc116e12f0eeb2c3015c3568b90163b57 /weed/server/volume_server.go | |
| parent | 91ac2e0dd920c0f629f4076202267afbac74a62c (diff) | |
| download | seaweedfs-b1daede91bca63bf2ca3019f622e763d35969e4f.tar.xz seaweedfs-b1daede91bca63bf2ca3019f622e763d35969e4f.zip | |
move volume vacuum to gRpc
Diffstat (limited to 'weed/server/volume_server.go')
| -rw-r--r-- | weed/server/volume_server.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/weed/server/volume_server.go b/weed/server/volume_server.go index 2d0a6f542..238330abb 100644 --- a/weed/server/volume_server.go +++ b/weed/server/volume_server.go @@ -48,10 +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/vacuum/check", vs.guard.WhiteList(vs.vacuumVolumeCheckHandler)) - adminMux.HandleFunc("/admin/vacuum/compact", vs.guard.WhiteList(vs.vacuumVolumeCompactHandler)) - adminMux.HandleFunc("/admin/vacuum/commit", vs.guard.WhiteList(vs.vacuumVolumeCommitHandler)) - adminMux.HandleFunc("/admin/vacuum/cleanup", vs.guard.WhiteList(vs.vacuumVolumeCleanupHandler)) 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)) |
