pvary commented on code in PR #10832: URL: https://github.com/apache/iceberg/pull/10832#discussion_r1705305624
########## flink/v1.19/flink/src/test/java/org/apache/iceberg/flink/source/TestIcebergSourceWithWatermarkExtractor.java: ########## @@ -79,6 +80,12 @@ public class TestIcebergSourceWithWatermarkExtractor implements Serializable { @TempDir protected Path temporaryFolder; private static final InMemoryReporter REPORTER = InMemoryReporter.createWithRetainedMetrics(); + public static final Configuration DISABLE_CLASSLOADER_CHECK_CONFIG = + new Configuration() + // disable classloader check as Avro may cache class/object in the serializers. + .set(CoreOptions.CHECK_LEAKED_CLASSLOADER, false) + // disable inferring source parallelism Review Comment: Maybe explicitly setting the parallelism in those tests would be better. WDYT? -- 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. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org