1
0
Fork 0

Merge pull request #942 from rqlite/enableb-status

Better variable name
master
Philip O'Toole 3 years ago committed by GitHub
commit 5035478bb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -229,11 +229,11 @@ func New(ln Listener, c *Config) *Store {
} }
} }
// Open opens the Store. If enableBootstrap is set, then this node becomes a // Open opens the Store. If enableSingleNode is set, then this node becomes a
// standalone node. If not set, then the calling layer must know that this // standalone node. If not set, then the calling layer must know that this
// node has pre-existing state, or the calling layer will trigger a join // node has pre-existing state, or the calling layer will trigger a join
// operation after opening the Store. // operation after opening the Store.
func (s *Store) Open(enableBootstrap bool) error { func (s *Store) Open(enableSingleNode bool) error {
s.openT = time.Now() s.openT = time.Now()
s.logger.Printf("opening store with node ID %s", s.raftID) s.logger.Printf("opening store with node ID %s", s.raftID)
@ -342,8 +342,8 @@ func (s *Store) Open(enableBootstrap bool) error {
return fmt.Errorf("new raft: %s", err) return fmt.Errorf("new raft: %s", err)
} }
if enableBootstrap { if enableSingleNode {
s.logger.Printf("executing new cluster bootstrap") s.logger.Printf("executing single-node bootstrap")
configuration := raft.Configuration{ configuration := raft.Configuration{
Servers: []raft.Server{ Servers: []raft.Server{
{ {
@ -354,7 +354,7 @@ func (s *Store) Open(enableBootstrap bool) error {
} }
ra.BootstrapCluster(configuration) ra.BootstrapCluster(configuration)
} else { } else {
s.logger.Printf("no cluster bootstrap requested") s.logger.Printf("single-node bootstrap not requested")
} }
s.raft = ra s.raft = ra

Loading…
Cancel
Save