Skip to content

Commit

Permalink
Merge branch 'master' into feature/kafka-logging-e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
Aias00 authored Aug 30, 2024
2 parents 7aebf1e + 2b30a3d commit 2c87c11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public MetaData obtain(final String path) {
.orElseGet(() -> {
final MetaData value = META_DATA_MAP.values()
.stream()
.filter(data -> PathMatchUtils.match(data.getPath(), path))
.filter(data -> data.getEnabled() && PathMatchUtils.match(data.getPath(), path))
.findFirst()
.orElse(null);
final String metaPath = Optional.ofNullable(value)
Expand Down

0 comments on commit 2c87c11

Please sign in to comment.