[ISSUE #9966] Propagate policy type for ACL deletion#10428
Open
skt-shinyruo wants to merge 2 commits into
Open
[ISSUE #9966] Propagate policy type for ACL deletion#10428skt-shinyruo wants to merge 2 commits into
skt-shinyruo wants to merge 2 commits into
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## develop #10428 +/- ##
=============================================
- Coverage 48.05% 47.96% -0.09%
+ Complexity 13303 13281 -22
=============================================
Files 1377 1377
Lines 100611 100634 +23
Branches 12991 12994 +3
=============================================
- Hits 48347 48271 -76
- Misses 46348 46419 +71
- Partials 5916 5944 +28 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
policyTypeparameter to the ACL delete path in mqadmin, admin, client, and remoting request headerpolicyTypeis not provided, while allowingmqadmin deleteAclto targetPolicyType=DefaultRoot Cause
DeleteAclRequestHeadersupportspolicyType, but the delete path from mqadmin to broker did not populate it. When the field is absent, broker-side delete handling falls back toPolicyType.CUSTOM, so deleting aDEFAULTpolicy entry cannot target the intended ACL rule.Test Plan
mvn -o -pl tools -am -DskipTests compilemvn -o -pl client -am -DfailIfNoTests=false -Dtest=MQClientAPIImplTest#testDeleteAcl+testDeleteAclWithPolicyType testmvn -o -pl broker -am -DfailIfNoTests=false -Dtest=AdminBrokerProcessorTest#testDeleteAcl+testDeleteAclWithPolicyType testmvn -o -pl auth -am -DfailIfNoTests=false -Dtest=AuthorizationMetadataManagerTest#deleteAcl testCloses #9966