mirror of https://github.com/hashicorp/consul
Flaky test: ACLReplication_Tokens (#5891)
* Exclude non-go workflows while testing
* Wait for s2 global-management policy
* Revert "Exclude non-go workflows while testing"
This reverts commit 47a83cbe9f
.
pull/5896/head
commit
6c19cacd42
|
@ -376,6 +376,13 @@ func TestACLReplication_Tokens(t *testing.T) {
|
|||
checkSame(r)
|
||||
})
|
||||
|
||||
// Wait for s2 global-management policy
|
||||
retry.Run(t, func(r *retry.R) {
|
||||
_, policy, err := s2.fsm.State().ACLPolicyGetByID(nil, structs.ACLPolicyGlobalManagementID)
|
||||
require.NoError(r, err)
|
||||
require.NotNil(t, policy)
|
||||
})
|
||||
|
||||
// add some local tokens to the secondary DC
|
||||
// these shouldn't be deleted by replication
|
||||
for i := 0; i < 50; i++ {
|
||||
|
|
Loading…
Reference in New Issue