Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DBZ-8035 Align core changes #24

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
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 @@ -14,7 +14,7 @@ public class As400TaskContext extends CdcSourceTaskContext {

public As400TaskContext(As400ConnectorConfig config, As400DatabaseSchema schema,
Map<String, String> customMetricTags) {
super(config.getContextName(), config.getLogicalName(), customMetricTags, schema::tableIds);
super(config, customMetricTags, schema::tableIds);
this.config = config;
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<properties>
<!-- Debezium parent -->
<version.debezium>2.7.0-SNAPSHOT</version.debezium>
<version.debezium>3.0.0-SNAPSHOT</version.debezium>

<!-- Dependencies -->
<version.jt400>11.1</version.jt400>
Expand Down
Loading