Github user fhueske commented on a diff in the pull request: https://github.com/apache/flink/pull/5860#discussion_r183758338 --- Diff: flink-connectors/flink-connector-filesystem/src/test/java/org/apache/flink/streaming/connectors/fs/bucketing/BucketingSinkTest.java --- @@ -436,6 +463,40 @@ public void testScalingUp() throws Exception { checkFs(outDir, 0, 3, 5, 5); } + @Test + public void testRolloverInterval() throws Exception { + final File outDir = tempFolder.newFolder(); + + OneInputStreamOperatorTestHarness<String, Object> testHarness = createRescalingTestSinkWithRollover(outDir, 1, 0, 1000L, 100L); + testHarness.setup(); + testHarness.open(); + + testHarness.setProcessingTime(0L); + + testHarness.processElement(new StreamRecord<>("test1", 1L)); + checkFs(outDir, 1, 0, 0, 0); --- End diff -- rm double blank
---