pvary commented on code in PR #12427: URL: https://github.com/apache/iceberg/pull/12427#discussion_r2026549485
########## core/src/main/java/org/apache/iceberg/RemoveSnapshots.java: ########## @@ -153,6 +153,13 @@ public ExpireSnapshots planWith(ExecutorService executorService) { return this; } + protected ExecutorService planExecutorService() { + if (planExecutorService == null) { + this.planExecutorService = ThreadPools.getWorkerPool(); + } Review Comment: nit: new line please. The coding guide says we need to add new line after the blocks: https://iceberg.apache.org/contribute/#block-spacing -- 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