You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by ab...@apache.org on 2023/05/24 01:27:36 UTC

[incubator-devlake] branch main updated: fix: missing _raw_jira_api_issue_comments (#5270)

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 7f066c616 fix: missing _raw_jira_api_issue_comments (#5270)
7f066c616 is described below

commit 7f066c6161e51d5407eb6b6996c86865e76fe203
Author: Liang Zhang <li...@merico.dev>
AuthorDate: Wed May 24 09:27:32 2023 +0800

    fix: missing _raw_jira_api_issue_comments (#5270)
---
 backend/plugins/jira/tasks/issue_comment_extractor.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/backend/plugins/jira/tasks/issue_comment_extractor.go b/backend/plugins/jira/tasks/issue_comment_extractor.go
index 819ada8d1..e53828853 100644
--- a/backend/plugins/jira/tasks/issue_comment_extractor.go
+++ b/backend/plugins/jira/tasks/issue_comment_extractor.go
@@ -29,7 +29,7 @@ import (
 var _ plugin.SubTaskEntryPoint = ExtractIssueComments
 
 var ExtractIssueCommentsMeta = plugin.SubTaskMeta{
-	Name:             "extractIssueChangelogs",
+	Name:             "extractIssueComments",
 	EntryPoint:       ExtractIssueComments,
 	EnabledByDefault: false,
 	Description:      "extract Jira Issue comments",