Skip to content

Commit

Permalink
DBZ-8035 Align core changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mfvitale authored and jpechane committed Aug 20, 2024
1 parent 443f4f1 commit 2f121df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class CassandraConnectorContext extends CdcSourceTaskContext {
private final Set<String> erroneousCommitLogs = ConcurrentHashMap.newKeySet();

public CassandraConnectorContext(CassandraConnectorConfig config) {
super(config.getContextName(), config.getLogicalName(), config.getCustomMetricTags(), Collections::emptySet);
super(config, config.getCustomMetricTags(), Collections::emptySet);
this.config = config;
prepareQueues();
}
Expand All @@ -38,7 +38,7 @@ public CassandraConnectorContext(CassandraConnectorConfig config,
SchemaLoader schemaLoader,
SchemaChangeListenerProvider schemaChangeListenerProvider,
OffsetWriter offsetWriter) {
super(config.getContextName(), config.getLogicalName(), config.getCustomMetricTags(), Collections::emptySet);
super(config, config.getCustomMetricTags(), Collections::emptySet);
this.config = config;
this.offsetWriter = offsetWriter;

Expand Down

0 comments on commit 2f121df

Please sign in to comment.