Skip to content

Commit

Permalink
update config path
Browse files Browse the repository at this point in the history
  • Loading branch information
Cheun99 committed Jan 8, 2025
1 parent 9d1418b commit 25f720b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,10 @@ private Map<TablePath, ConsumerMetadata> createMapConsumerMetadata(
return consumerMetadataList.stream()
.collect(
Collectors.toMap(
consumerMetadata -> TablePath.of(consumerMetadata.getTopic()),
consumerMetadata -> {
String topic = consumerMetadata.getTopic().replace(".", "_");
return TablePath.of("kafka", topic);
},
consumerMetadata -> consumerMetadata));
}

Expand Down

0 comments on commit 25f720b

Please sign in to comment.