We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9610758 commit fe81918Copy full SHA for fe81918
src/main/java/io/confluent/kafka/connect/datagen/DatagenConnectorConfig.java
@@ -216,6 +216,9 @@ private static class GenerateTimeoutValidator implements Validator {
216
217
@Override
218
public void ensureValid(String name, Object value) {
219
+ if (value == null) {
220
+ return;
221
+ }
222
Long longValue = (Long) value;
223
if (longValue > 0 && longValue <= 60000L) {
224
return;
0 commit comments