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: hudi-utilities/src/main/java/org/apache/hudi/utilities/callback/pulsar/HoodieWriteCommitPulsarCallback.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,6 @@ public HoodieWriteCommitPulsarCallback(HoodieWriteConfig config) throws PulsarCl
78
78
this.topic = config.getString(TOPIC);
79
79
this.client = createClient(config);
80
80
this.producer = createProducer(config);
81
-
validatePulsarConfig();
82
81
}
83
82
84
83
@Override
@@ -121,8 +120,9 @@ public Producer<String> createProducer(HoodieConfig hoodieConfig) throws PulsarC
Copy file name to clipboardExpand all lines: hudi-utilities/src/main/java/org/apache/hudi/utilities/callback/pulsar/HoodieWriteCommitPulsarCallbackConfig.java
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -100,4 +100,19 @@ public class HoodieWriteCommitPulsarCallbackConfig extends HoodieConfig {
100
100
.sinceVersion("0.11.0")
101
101
.withDocumentation("Duration of keeping alive interval for each "
102
102
+ "client broker connection.");
103
+
104
+
/**
105
+
* Set default value for {@link HoodieWriteCommitPulsarCallbackConfig} if needed.
0 commit comments