We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a1beab commit ad5d33bCopy full SHA for ad5d33b
src/main/java/com/uid2/operator/vertx/UIDOperatorVerticle.java
@@ -282,7 +282,7 @@ public void handleKeysSharing(RoutingContext rc) {
282
final List<EncryptionKey> keyStore = getEncryptionKeys();
283
284
MissingAclMode mode = MissingAclMode.DENY_ALL;
285
- // This will break if another Type is added to this map
+ // This casting will break if another Type is added to Role enum and shared lib version is not updated
286
IRoleAuthorizable<Role> roleAuthorize = (IRoleAuthorizable<Role>) rc.data().get(API_CLIENT_PROP);
287
if(roleAuthorize.hasRole(Role.ID_READER)) {
288
mode = MissingAclMode.ALLOW_ALL;
0 commit comments