This is an automated email from the ASF dual-hosted git repository.
lynwee 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 c04895166 fix(framework): fix errors when updating `is_failed` in PG
(#8238)
c04895166 is described below
commit c04895166b6b87ff05355c15f14232db8d886232
Author: Lynwee <[email protected]>
AuthorDate: Thu Dec 12 10:48:36 2024 +0800
fix(framework): fix errors when updating `is_failed` in PG (#8238)
---
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())