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 47a83cbe9f19d0e1e475eabaa223d61fb4c56019.
This commit is contained in:
commit
e9bdb3a4f9
|
@ -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