We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When registering multiple clients at the same time using OIDC we might break the UNIQUE constraint on namespace name:
From oidc.go:
oidc.go
namespace, err := h.GetNamespace(namespaceName) if errors.Is(err, ErrNamespaceNotFound) { namespace, err = h.CreateNamespace(namespaceName) if err != nil { log.Error(). Err(err). Caller(). Msgf("could not create new namespace '%s'", namespaceName)
I reckon this is a bit of a edge case in our integration tests, but seems to be there.
The text was updated successfully, but these errors were encountered:
Added sleep to workaround #814
7a171cf
Added indication of workaround for #814
95948e0
Is this still relevant with the new integration tests?
Sorry, something went wrong.
This issue is stale because it has been open for 180 days with no activity.
This issue was closed because it has been inactive for 14 days since being marked as stale.
No branches or pull requests
When registering multiple clients at the same time using OIDC we might break the UNIQUE constraint on namespace name:
From
oidc.go
:I reckon this is a bit of a edge case in our integration tests, but seems to be there.
The text was updated successfully, but these errors were encountered: