Skip to content

Commit

Permalink
Increase max learners to 5
Browse files Browse the repository at this point in the history
  • Loading branch information
micahlee committed Nov 14, 2024
1 parent f4369e5 commit b069d1d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/etcdserver/api/membership/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ import (
"go.uber.org/zap"
)

const maxLearners = 1
// For Conjur Enterprise, we want to allow up to 5 Learners (aka Standbys) to be
// added at a time. This is to better allow defining the member during seed
// generation from when we configure the Standby. This way, we can pre-configure
// up to 5 Standbys before needing to configure any of them.
const maxLearners = 5

// RaftCluster is a list of Members that belong to the same raft cluster
type RaftCluster struct {
Expand Down

0 comments on commit b069d1d

Please # to comment.