This is an automated email from the ASF dual-hosted git repository. jojochuang pushed a commit to branch ozone-2.1 in repository https://gitbox.apache.org/repos/asf/ozone.git
commit c2e476e0e970685211a69b005a987f7ca3b50db5 Author: Wei-Chiu Chuang <[email protected]> AuthorDate: Thu Aug 27 10:20:19 2026 -0700 Remove stale InvalidStateTransitionException catch in Recon Follow-up to HDDS-15578 backport where SCM swallows the exception. Co-authored-by: Cursor <[email protected]> Change-Id: I3ace3768a3c3cbedde9fd166e560e41edc0d8666 --- .../java/org/apache/hadoop/ozone/recon/fsck/ContainerHealthTask.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/hadoop-ozone/recon/src/main/java/org/apache/hadoop/ozone/recon/fsck/ContainerHealthTask.java b/hadoop-ozone/recon/src/main/java/org/apache/hadoop/ozone/recon/fsck/ContainerHealthTask.java index 56fc47132b2..bc84f703ac2 100644 --- a/hadoop-ozone/recon/src/main/java/org/apache/hadoop/ozone/recon/fsck/ContainerHealthTask.java +++ b/hadoop-ozone/recon/src/main/java/org/apache/hadoop/ozone/recon/fsck/ContainerHealthTask.java @@ -434,9 +434,6 @@ private boolean containerDeletedInSCM(ContainerInfo containerInfo) { } return true; } - } catch (InvalidStateTransitionException e) { - LOG.error("Failed to transition Container state while processing " + - "container in Container Health task", e); } catch (IOException e) { LOG.error("Got exception while processing container in" + " Container Health task", e); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
