DBZ-6496 Fix signal.poll.interval.ms default value

This commit is contained in:
mfvitale 2023-05-23 11:57:07 +02:00 committed by Jiri Pechanec
parent f6fa87ce1f
commit 7ba9f57035

View File

@ -627,7 +627,7 @@ public static FieldNameAdjustmentMode parse(String value) {
.withType(Type.LONG)
.withWidth(Width.SHORT)
.withImportance(Importance.MEDIUM)
.withDefault(5L)
.withDefault(5000L)
.withValidation(Field::isPositiveInteger)
.withDescription("Interval for looking for new signals in registered channels, given in milliseconds. Defaults to 5 seconds.");