Clear the detail when restarting tasks

This commit is contained in:
Přemysl Eric Janouch 2024-04-10 12:55:07 +02:00
parent 274e71fb6a
commit d4405a0cde
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 2 additions and 1 deletions

View File

@ -374,7 +374,8 @@ func rpcRestart(w io.Writer, ids []int64) {
// The executor bumps to "running" after inserting into gRunning,
// so we should not need to exclude that state here.
result, err := gDB.ExecContext(context.Background(),
`UPDATE task SET state = ? WHERE id = ?`, taskStateNew, id)
`UPDATE task SET state = ?, detail = '' WHERE id = ?`,
taskStateNew, id)
if err != nil {
fmt.Fprintf(w, "%d: %s\n", id, err)
} else if n, _ := result.RowsAffected(); n != 1 {