You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix race condition where the user was created before (therefore without being linked to) the policy, causing CheckUserCredentialsValid to fail and handleS3ExistingUser to enter an infinite loop
fmt.Sprintf("Checking the S3User %s's credentials on S3 server has failed", userResource.Name), err)
165
-
}
166
-
167
-
if!credentialsValid {
168
-
logger.Info("The secret containing the credentials will be deleted, and the user will be deleted from the S3 backend, then recreated (through another reconcile)")
fmt.Sprintf("Checking the S3User %s's credentials on S3 server has failed", userResource.Name), err)
211
+
}
212
+
213
+
if!credentialsValid {
214
+
logger.Info("The secret containing the credentials will be deleted, and the user will be deleted from the S3 backend, then recreated (through another reconcile)")
0 commit comments