This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch release-v0.19
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/release-v0.19 by this push:
new 0d0cba359 fix: jira epics wont be converted to domain layer at the
first run (#6378)
0d0cba359 is described below
commit 0d0cba35970441293af3469484afdc6ae6707015
Author: Klesh Wong <[email protected]>
AuthorDate: Wed Nov 1 16:41:40 2023 +0800
fix: jira epics wont be converted to domain layer at the first run (#6378)
---
backend/plugins/jira/impl/impl.go | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/backend/plugins/jira/impl/impl.go
b/backend/plugins/jira/impl/impl.go
index b2a39bbd9..230dc2010 100644
--- a/backend/plugins/jira/impl/impl.go
+++ b/backend/plugins/jira/impl/impl.go
@@ -134,6 +134,9 @@ func (p Jira) SubTaskMetas() []plugin.SubTaskMeta {
tasks.CollectSprintsMeta,
tasks.ExtractSprintsMeta,
+ tasks.CollectEpicsMeta,
+ tasks.ExtractEpicsMeta,
+
tasks.ConvertBoardMeta,
tasks.ConvertIssuesMeta,
@@ -153,9 +156,6 @@ func (p Jira) SubTaskMetas() []plugin.SubTaskMeta {
tasks.ExtractAccountsMeta,
tasks.ConvertAccountsMeta,
-
- tasks.CollectEpicsMeta,
- tasks.ExtractEpicsMeta,
}
}