Replies: 1 comment 1 reply
-
Since plugins can provide CLI commands, a CLI command such as You are welcome to submit a PR. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Is your feature request related to a problem? Please describe.
rabbitmq-auth-backend-cache provides good and simple way to cache http response for access control operations.
The expiration of cache is currently time-based. I had a requirement in which I wanted to clear cache result for a individual user entry even before its cache expiration time. I had a look at cache code and found there is delete option for a key in rabbit_auth_cache_ets.erl (default cache implementation). The delete option is only exercised before performing put operation.
I think it will be good if we can also exposed the delete option so it can be called externally..
Describe the solution you'd like
After research I see this command but it says "ok" but without deleting the cache..
rabbitmqctl eval 'Key = {user_login_authentication,[<<"username">>,[{password,<<"password">>}]]}, rabbit_auth_cache_ets:delete(Key).'
Describe alternatives you've considered
No response
Additional context
No response
Beta Was this translation helpful? Give feedback.
All reactions