This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 8ca12e213 [hotfix] Silent CancellationException for
CompactFutureManager (#1379)
8ca12e213 is described below
commit 8ca12e2131cbf87c873687cd9a4e750d2d8aee6f
Author: Weijie Guo <[email protected]>
AuthorDate: Thu Jun 15 09:45:09 2023 +0800
[hotfix] Silent CancellationException for CompactFutureManager (#1379)
---
.../src/main/java/org/apache/paimon/compact/CompactFutureManager.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/paimon-core/src/main/java/org/apache/paimon/compact/CompactFutureManager.java
b/paimon-core/src/main/java/org/apache/paimon/compact/CompactFutureManager.java
index d86c2a534..3a2a1a199 100644
---
a/paimon-core/src/main/java/org/apache/paimon/compact/CompactFutureManager.java
+++
b/paimon-core/src/main/java/org/apache/paimon/compact/CompactFutureManager.java
@@ -50,7 +50,6 @@ public abstract class CompactFutureManager implements
CompactManager {
try {
result = taskFuture.get();
} catch (CancellationException e) {
- LOG.info("Compaction future is cancelled", e);
taskFuture = null;
return Optional.empty();
}