Skip to content

Commit

Permalink
Fix client-tag selector rule
Browse files Browse the repository at this point in the history
  • Loading branch information
saravanan19 authored Oct 9, 2024
1 parent f9f884d commit bf53dfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public Optional<String> match(RequestInfo requestInfo)
}
}

if (clientTags.isPresent() && requestInfo.getClientTags().containsAll(clientTags.get())) {
if (clientTags.isPresent() && !requestInfo.getClientTags().containsAll(clientTags.get())) {
return Optional.empty();
}

Expand Down

0 comments on commit bf53dfe

Please sign in to comment.