This is an automated email from the ASF dual-hosted git repository.
lynwee pushed a commit to branch dev-1212
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/dev-1212 by this push:
new d2be0039b fix(framework): fix errors when updating `is_failed` in PG
d2be0039b is described below
commit d2be0039b00425e01c22bf61ded5230363d8f415
Author: d4x1 <[email protected]>
AuthorDate: Thu Dec 12 10:24:47 2024 +0800
fix(framework): fix errors when updating `is_failed` in PG
---
backend/core/runner/run_task.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/backend/core/runner/run_task.go b/backend/core/runner/run_task.go
index 0a4bbcd8c..d488b3b72 100644
--- a/backend/core/runner/run_task.go
+++ b/backend/core/runner/run_task.go
@@ -335,7 +335,7 @@ func RunPluginSubTasks(
logger.Error(err, "")
where := dal.Where("task_id = ? and name = ?",
task.ID, subtaskCtx.GetName())
if err :=
basicRes.GetDal().UpdateColumns(subtask, []dal.DalSet{
- {ColumnName: "is_failed", Value: 1},
+ {ColumnName: "is_failed", Value: true},
{ColumnName: "message", Value:
err.Error()},
}, where); err != nil {
basicRes.GetLogger().Error(err, "error
writing subtask %v status to DB", subtaskCtx.GetName())