You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// force a raft log compaction
self.registerEndpoint(p, "post", "/raft/force_compaction", self.forceRaftCompaction)
// fetch current list of available interfaces
self.registerEndpoint(p, "get", "/interfaces", self.listInterfaces)
// cluster config endpoints
self.registerEndpoint(p, "get", "/cluster/servers", self.listServers)
self.registerEndpoint(p, "post", "/cluster/shards", self.createShard)
self.registerEndpoint(p, "get", "/cluster/shards", self.getShards)
self.registerEndpoint(p, "del", "/cluster/shards/:id", self.dropShard)
// return whether the cluster is in sync or not
self.registerEndpoint(p, "get", "/sync", self.isInSync)
The text was updated successfully, but these errors were encountered:
from api.go:
The text was updated successfully, but these errors were encountered: