You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by zh...@apache.org on 2023/02/03 10:39:08 UTC

[incubator-devlake] branch main updated: fix: task data decode failed (#4316)

This is an automated email from the ASF dual-hosted git repository.

zhangliang2022 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 d5199e2d2 fix: task data decode failed (#4316)
d5199e2d2 is described below

commit d5199e2d2a0c1f2f82e8e2e95ed43b99dd3c60d7
Author: NaRro <co...@merico.dev>
AuthorDate: Fri Feb 3 18:39:02 2023 +0800

    fix: task data decode failed (#4316)
---
 backend/plugins/customize/tasks/task_data.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/backend/plugins/customize/tasks/task_data.go b/backend/plugins/customize/tasks/task_data.go
index 62b69d7ee..6850bd725 100644
--- a/backend/plugins/customize/tasks/task_data.go
+++ b/backend/plugins/customize/tasks/task_data.go
@@ -19,8 +19,8 @@ package tasks
 
 type MappingRules struct {
 	Table         string            `json:"table" example:"issues"`
-	RawDataTable  string            `json:"_raw_data_table" example:"_raw_jira_api_issues"`
-	RawDataParams string            `json:"_raw_data_params" example:"{\"ConnectionId\":1,\"BoardId\":8}"`
+	RawDataTable  string            `json:"rawDataTable" example:"_raw_jira_api_issues"`
+	RawDataParams string            `json:"rawDataParams" example:"{\"ConnectionId\":1,\"BoardId\":8}"`
 	Mapping       map[string]string `json:"mapping" example:"x_text:fields.created"`
 }