1 Star 1 Fork 0

hh/etcd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
set_cluster_config_command.go 671 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ben Johnson 提交于 2014-03-24 15:09 . bump(github.com/goraft/raft): 6bf34b9
package server
import (
"github.com/coreos/etcd/third_party/github.com/goraft/raft"
)
func init() {
raft.RegisterCommand(&SetClusterConfigCommand{})
}
// SetClusterConfigCommand sets the cluster-level configuration.
type SetClusterConfigCommand struct {
Config *ClusterConfig `json:"config"`
}
// CommandName returns the name of the command.
func (c *SetClusterConfigCommand) CommandName() string {
return "etcd:setClusterConfig"
}
// Apply updates the cluster configuration.
func (c *SetClusterConfigCommand) Apply(context raft.Context) (interface{}, error) {
ps, _ := context.Server().Context().(*PeerServer)
ps.SetClusterConfig(c.Config)
return nil, nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/w1229748769/etcd.git
git@gitee.com:w1229748769/etcd.git
w1229748769
etcd
etcd
v0.4.7

搜索帮助

0d507c66 1850385 C8b1a773 1850385