summaryrefslogtreecommitdiff
path: root/internal/storage/db.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/storage/db.go')
-rw-r--r--internal/storage/db.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/storage/db.go b/internal/storage/db.go
index 5ba0786..aaf1e09 100644
--- a/internal/storage/db.go
+++ b/internal/storage/db.go
@@ -237,7 +237,7 @@ func (s *DB) ResetTaskForRetry(id string) (*task.Task, error) {
configJSON, _ := json.Marshal(t.Agent)
now := time.Now().UTC()
- if _, err := tx.Exec(`UPDATE tasks SET state = ?, config_json = ?, updated_at = ? WHERE id = ?`,
+ if _, err := tx.Exec(`UPDATE tasks SET state = ?, config_json = ?, question_json = NULL, updated_at = ? WHERE id = ?`,
string(task.StateQueued), string(configJSON), now, id); err != nil {
return nil, err
}