aljoscha commented on a change in pull request #13509:
URL: https://github.com/apache/flink/pull/13509#discussion_r497330032
##########
File path:
flink-core/src/main/java/org/apache/flink/api/common/ExecutionConfig.java
##########
@@ -126,7 +126,7 @@
private boolean autoTypeRegistrationEnabled = true;
private boolean forceAvro = false;
- private long autoWatermarkInterval = 0;
+ private long autoWatermarkInterval = 200;
Review comment:
I can add a `static final DEFAULT_WATERMARK_INTERVAL` but then it would
basically be
```
private static final long DEFAULT_WATERMARK_INTERVAL = 200;
private long autoWatermarkInterval = DEFAULT_WATERMARK_INTERVAL;
```
except that we might but the default at the top. If you think it would help
I can do it.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]