aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2022-04-11 10:50:01 +0500
committerKonstantin Lebedev <9497591+kmlebedev@users.noreply.github.com>2022-04-11 10:50:01 +0500
commit931cb9e5818b202c3855321c9b12a6149d121ffa (patch)
treed3ef08ee15dd8fe05e6ce8f008dd2f6e472a6167
parentd2fe0fae33f66e356cadd6096daa24d37e87df6d (diff)
downloadseaweedfs-931cb9e5818b202c3855321c9b12a6149d121ffa.tar.xz
seaweedfs-931cb9e5818b202c3855321c9b12a6149d121ffa.zip
use "cluster.raft.{ps,add,remove}"
-rw-r--r--weed/shell/command_cluster_raft_add.go (renamed from weed/shell/command_raft_server_add.go)4
-rw-r--r--weed/shell/command_cluster_raft_ps.go (renamed from weed/shell/command_raft_cluster_ps.go)4
-rw-r--r--weed/shell/command_cluster_raft_remove.go (renamed from weed/shell/command_raft_server_remove.go)4
3 files changed, 6 insertions, 6 deletions
diff --git a/weed/shell/command_raft_server_add.go b/weed/shell/command_cluster_raft_add.go
index 843882810..e5f3c41c9 100644
--- a/weed/shell/command_raft_server_add.go
+++ b/weed/shell/command_cluster_raft_add.go
@@ -16,14 +16,14 @@ type commandRaftServerAdd struct {
}
func (c *commandRaftServerAdd) Name() string {
- return "raft.server.add"
+ return "cluster.raft.add"
}
func (c *commandRaftServerAdd) Help() string {
return `add a server to the raft cluster
Example:
- raft.server.add -id <server_name> -address <server_host:port> -voter
+ cluster.raft.add -id <server_name> -address <server_host:port> -voter
`
}
diff --git a/weed/shell/command_raft_cluster_ps.go b/weed/shell/command_cluster_raft_ps.go
index 6589e3629..ea868db06 100644
--- a/weed/shell/command_raft_cluster_ps.go
+++ b/weed/shell/command_cluster_raft_ps.go
@@ -16,13 +16,13 @@ type commandRaftClusterPs struct {
}
func (c *commandRaftClusterPs) Name() string {
- return "raft.cluster.ps"
+ return "cluster.raft.ps"
}
func (c *commandRaftClusterPs) Help() string {
return `check current raft cluster status
- raft.cluster.ps
+ cluster.raft.ps
`
}
diff --git a/weed/shell/command_raft_server_remove.go b/weed/shell/command_cluster_raft_remove.go
index 56b527478..532a1469c 100644
--- a/weed/shell/command_raft_server_remove.go
+++ b/weed/shell/command_cluster_raft_remove.go
@@ -16,14 +16,14 @@ type commandRaftServerRemove struct {
}
func (c *commandRaftServerRemove) Name() string {
- return "raft.server.remove"
+ return "cluster.raft.remove"
}
func (c *commandRaftServerRemove) Help() string {
return `remove a server from the raft cluster
Example:
- raft.server.remove -id <server_name>
+ cluster.raft.remove -id <server_name>
`
}