Skip to content

Commit

Permalink
Merge a012912 into backport/auth-object-replication-panic/uniquely-fi…
Browse files Browse the repository at this point in the history
…rm-wren
  • Loading branch information
hc-github-team-nomad-core authored Jun 12, 2023
2 parents c539c31 + a012912 commit 0db16db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nomad/leader.go
Original file line number Diff line number Diff line change
Expand Up @@ -1848,7 +1848,7 @@ func (s *Server) replicateACLRoles(stopCh chan struct{}) {
if !ServersMeetMinimumVersion(
s.serf.Members(), s.Region(), minACLRoleVersion, true) {
s.logger.Trace(
"all servers must be upgraded to 1.4.0 before ACL Roles can be replicated")
"all servers must be upgraded to 1.4.0 or later before ACL Roles can be replicated")
if s.replicationBackoffContinue(stopCh) {
continue
} else {
Expand Down Expand Up @@ -2057,7 +2057,7 @@ func (s *Server) replicateACLAuthMethods(stopCh chan struct{}) {
if !ServersMeetMinimumVersion(
s.serf.Members(), s.Region(), minACLAuthMethodVersion, true) {
s.logger.Trace(
"all servers must be upgraded to 1.5.0 before ACL Auth Methods can be replicated")
"all servers must be upgraded to 1.5.0 or later before ACL Auth Methods can be replicated")
if s.replicationBackoffContinue(stopCh) {
continue
} else {
Expand Down Expand Up @@ -2263,7 +2263,7 @@ func (s *Server) replicateACLBindingRules(stopCh chan struct{}) {
if !ServersMeetMinimumVersion(
s.serf.Members(), s.Region(), minACLBindingRuleVersion, true) {
s.logger.Trace(
"all servers must be upgraded to 1.5.0 before ACL Binding Rules can be replicated")
"all servers must be upgraded to 1.5.0 or later before ACL Binding Rules can be replicated")
if s.replicationBackoffContinue(stopCh) {
continue
} else {
Expand Down

0 comments on commit 0db16db

Please sign in to comment.