This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 7daab87c0 fix(zentao): fix closed sprint's status in domain layer's
sprints table (#5984)
7daab87c0 is described below
commit 7daab87c07a7b973d916cb45cea16460c45bbd00
Author: Lynwee <[email protected]>
AuthorDate: Thu Aug 31 10:42:37 2023 +0800
fix(zentao): fix closed sprint's status in domain layer's sprints table
(#5984)
---
backend/plugins/zentao/tasks/execution_convertor.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/backend/plugins/zentao/tasks/execution_convertor.go
b/backend/plugins/zentao/tasks/execution_convertor.go
index e24225c6d..fdf900d71 100644
--- a/backend/plugins/zentao/tasks/execution_convertor.go
+++ b/backend/plugins/zentao/tasks/execution_convertor.go
@@ -81,6 +81,7 @@ func ConvertExecutions(taskCtx plugin.SubTaskContext)
errors.Error {
case `suspended`:
domainStatus = `SUSPENDED`
case `closed`:
+ fallthrough
case `done`:
domainStatus = `CLOSED`
}