Skip to content

Commit

Permalink
DBZ-7235 Align VitessCloudEventsProvider/Maker with the core components
Browse files Browse the repository at this point in the history
  • Loading branch information
rkudryashov committed Dec 19, 2023
1 parent e498185 commit e6c0867
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
*/
public class VitessCloudEventsMaker extends CloudEventsMaker {

public VitessCloudEventsMaker(RecordParser parser, SerializerType contentType, String dataSchemaUriBase) {
super(parser, contentType, dataSchemaUriBase);
public VitessCloudEventsMaker(RecordParser parser, SerializerType contentType, String dataSchemaUriBase, String cloudEventsSchemaName) {
super(parser, contentType, dataSchemaUriBase, cloudEventsSchemaName);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public RecordParser createParser(RecordAndMetadata recordAndMetadata) {
}

@Override
public CloudEventsMaker createMaker(RecordParser parser, SerializerType contentType, String dataSchemaUriBase) {
return new VitessCloudEventsMaker(parser, contentType, dataSchemaUriBase);
public CloudEventsMaker createMaker(RecordParser parser, SerializerType contentType, String dataSchemaUriBase, String cloudEventsSchemaName) {
return new VitessCloudEventsMaker(parser, contentType, dataSchemaUriBase, cloudEventsSchemaName);
}
}

0 comments on commit e6c0867

Please sign in to comment.