This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch release-v0.18
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/release-v0.18 by this push:
new 8d59eb8b8 fix(zentao): fix closed sprint's status in domain layer's
sprints table (#5989)
8d59eb8b8 is described below
commit 8d59eb8b8d5758e260c0f02cf9224fe175a44385
Author: Lynwee <[email protected]>
AuthorDate: Thu Aug 31 10:56:33 2023 +0800
fix(zentao): fix closed sprint's status in domain layer's sprints table
(#5989)
---
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`
}