Remove a "fail fast" check from TestImpersonationProxy.
This check is no longer valid, because there can be ephemeral, recoverable errors that show as ErrorDuringSetup. Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
parent
d2d0dae4ed
commit
049abfb94c
@ -1413,10 +1413,6 @@ func performImpersonatorDiscovery(ctx context.Context, t *testing.T, env *librar
|
|||||||
} else if strategy.Type == conciergev1alpha.ImpersonationProxyStrategyType {
|
} else if strategy.Type == conciergev1alpha.ImpersonationProxyStrategyType {
|
||||||
t.Logf("Waiting for successful impersonation proxy strategy on %s: found status %s with reason %s and message: %s",
|
t.Logf("Waiting for successful impersonation proxy strategy on %s: found status %s with reason %s and message: %s",
|
||||||
credentialIssuerName(env), strategy.Status, strategy.Reason, strategy.Message)
|
credentialIssuerName(env), strategy.Status, strategy.Reason, strategy.Message)
|
||||||
if strategy.Reason == conciergev1alpha.ErrorDuringSetupStrategyReason {
|
|
||||||
// The server encountered an unexpected error while starting the impersonator, so fail the test fast.
|
|
||||||
return false, fmt.Errorf("found impersonation strategy in %s state with message: %s", strategy.Reason, strategy.Message)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
t.Log("Did not find any impersonation proxy strategy on CredentialIssuer")
|
t.Log("Did not find any impersonation proxy strategy on CredentialIssuer")
|
||||||
|
Loading…
Reference in New Issue
Block a user