snazy commented on code in PR #4537:
URL: https://github.com/apache/polaris/pull/4537#discussion_r3322469046
##########
polaris-core/src/main/java/org/apache/polaris/core/storage/gcp/GcpCredentialsStorageIntegration.java:
##########
@@ -202,10 +202,11 @@ public static CredentialAccessBoundary
generateAccessBoundaryRules(
Map<String, List<String>> readConditionsMap = new HashMap<>();
Map<String, List<String>> writeConditionsMap = new HashMap<>();
- HashSet<String> readBuckets = new HashSet<>();
- HashSet<String> writeBuckets = new HashSet<>();
+ LinkedHashSet<String> readBuckets = new LinkedHashSet<>();
+ LinkedHashSet<String> writeBuckets = new LinkedHashSet<>();
Review Comment:
Thanks, I was wondering why we need a `LinkedHashSet` with this change
instead of the existing `HashSet`, which worked.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]