You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: datastream-kafka-connector/src/main/java/com/linkedin/datastream/connectors/kafka/mirrormaker/KafkaMirrorMakerConnector.java
+24-5Lines changed: 24 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -131,12 +131,31 @@ public void initializeDatastream(Datastream stream, List<Datastream> allDatastre
131
131
if (placeholderIndex != -1 && placeholderIndex == destinationConnectionString.lastIndexOf(MM_TOPIC_PLACEHOLDER)) {
132
132
LOG.info("Allowing user managed datastream destination with connector {} for datastream {}", stream.getConnectorName(), stream.getName());
133
133
} else {
134
-
// TODO: Implement validation on the source to confirm that it is not a regex/wildcard source
134
+
135
+
// validation on the source to confirm that it is not a regex/wildcard source
136
+
// handling for DOT character is enough as Kafka allows only alphanumeric characters, periods (.), underscores (_), and hyphens (-) in its topic names
0 commit comments