This is an automated email from the ASF dual-hosted git repository.
linxinyuan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/texera.git
The following commit(s) were added to refs/heads/main by this push:
new 1feb04f933 fix: typo in WorkflowAggregatedState (#3697)
1feb04f933 is described below
commit 1feb04f933d265c32f5070a16f01d016c149244c
Author: Xinyuan Lin <[email protected]>
AuthorDate: Mon Aug 25 17:33:36 2025 -0700
fix: typo in WorkflowAggregatedState (#3697)
We incorrectly mapped "Terminated" to `COMPLETED` in
WorkflowAggregatedState.
---
core/amber/src/main/scala/edu/uci/ics/amber/engine/common/Utils.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/core/amber/src/main/scala/edu/uci/ics/amber/engine/common/Utils.scala
b/core/amber/src/main/scala/edu/uci/ics/amber/engine/common/Utils.scala
index 688c6b90ef..ba07aeb61d 100644
--- a/core/amber/src/main/scala/edu/uci/ics/amber/engine/common/Utils.scala
+++ b/core/amber/src/main/scala/edu/uci/ics/amber/engine/common/Utils.scala
@@ -99,7 +99,7 @@ object Utils extends LazyLogging {
case WorkflowAggregatedState.PAUSED => "Paused"
case WorkflowAggregatedState.RESUMING => "Resuming"
case WorkflowAggregatedState.COMPLETED => "Completed"
- case WorkflowAggregatedState.COMPLETED => "Terminated"
+ case WorkflowAggregatedState.TERMINATED => "Terminated"
case WorkflowAggregatedState.FAILED => "Failed"
case WorkflowAggregatedState.KILLED => "Killed"
case WorkflowAggregatedState.UNKNOWN => "Unknown"