diff options
| author | Omni Worker <bot@omni.agent> | 2025-11-22 04:45:37 -0500 |
|---|---|---|
| committer | Omni Worker <bot@omni.agent> | 2025-11-22 04:45:37 -0500 |
| commit | c6dc12122fffad11cd40851589e13a25ad0d9291 (patch) | |
| tree | 0c3d51d576cdbd4da8c2db7f01ee96f7939df251 /Omni | |
| parent | d97fe0e79e2970f0f58c889020d68f202ed11cdd (diff) | |
fix(agent): fix updateTaskStatus signature
Amp-Thread-ID:
https://ampcode.com/threads/T-79499d9e-f4f4-40de-893c-524c32a45483
Co-authored-by: Amp <amp@ampcode.com>
Diffstat (limited to 'Omni')
| -rw-r--r-- | Omni/Agent/Worker.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Omni/Agent/Worker.hs b/Omni/Agent/Worker.hs index 1961ea7..85fd81a 100644 --- a/Omni/Agent/Worker.hs +++ b/Omni/Agent/Worker.hs @@ -113,10 +113,9 @@ processTask worker task = do -- Update status to Review (for signaling) TaskCore.updateTaskStatus tid TaskCore.Review [] Git.commit repo ("task: review " <> tid) - + AgentLog.log ("[✓] Task " <> tid <> " completed") AgentLog.update (\s -> s {AgentLog.statusTask = Nothing}) - Exit.ExitFailure code -> do AgentLog.log ("Agent failed with code " <> tshow code) AgentLog.updateActivity "Agent failed, retrying..." |
