-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
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
Ignore credentials created for consumers without selectTag #65
Labels
Milestone
Comments
hbagdi
added a commit
that referenced
this issue
Aug 21, 2019
Credentials in Kong are not tagged at the moment. This leads to an error condition when only a subset where all credentials If `select_tags` functionality is used, only a subset of consumers are loaded in memory and this leads to a case where a credential could belong to a consumer that is not part of the sub-set. Such ErrNotFound errors are now ignored, if the select_tags feature is being used. The duplication of code here is absolutely shit. Fix #65
hbagdi
added a commit
that referenced
this issue
Aug 21, 2019
Credentials in Kong are not tagged at the moment. This leads to an error condition when only a subset where all credentials If `select_tags` functionality is used, only a subset of consumers are loaded in memory and this leads to a case where a credential could belong to a consumer that is not part of the sub-set. Such ErrNotFound errors are now ignored, if the select_tags feature is being used. The duplication of code here is absolutely shit. Fix #65 From #68
rainest
pushed a commit
that referenced
this issue
Apr 21, 2021
Credentials in Kong are not tagged at the moment. This leads to an error condition when only a subset where all credentials If `select_tags` functionality is used, only a subset of consumers are loaded in memory and this leads to a case where a credential could belong to a consumer that is not part of the sub-set. Such ErrNotFound errors are now ignored, if the select_tags feature is being used. The duplication of code here is absolutely shit. Fix #65 From #68
AntoineJac
pushed a commit
that referenced
this issue
Jan 23, 2024
Credentials in Kong are not tagged at the moment. This leads to an error condition when only a subset where all credentials If `select_tags` functionality is used, only a subset of consumers are loaded in memory and this leads to a case where a credential could belong to a consumer that is not part of the sub-set. Such ErrNotFound errors are now ignored, if the select_tags feature is being used. The duplication of code here is absolutely shit. Fix #65 From #68
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When
select_tags
feature is used to manage only a subset of Kong configuration, then any credential created for a consumer created outside of the managed config is loaded, decK errors out.The problem here being that credentials are not tagged in Kong (yet) and hence Kong tries to load all the credentials.
The text was updated successfully, but these errors were encountered: