Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2091,7 +2091,6 @@ static class GenerateKafkaSourceDescriptor extends DoFn<byte[], KafkaSourceDescr
this.topicPattern = read.getTopicPattern();
this.startReadTime = read.getStartReadTime();
this.stopReadTime = read.getStopReadTime();
this.logTopicVerification = read.getLogTopicVerification();
}

private final SerializableFunction<Map<String, Object>, Consumer<byte[], byte[]>>
Expand All @@ -2108,7 +2107,6 @@ static class GenerateKafkaSourceDescriptor extends DoFn<byte[], KafkaSourceDescr
@VisibleForTesting final @Nullable List<String> topics;

private final @Nullable Pattern topicPattern;
private final @Nullable Boolean logTopicVerification;

@ProcessElement
public void processElement(OutputReceiver<KafkaSourceDescriptor> receiver) {
Expand Down
Loading