From 52b2797b1d2fa54f82a959dab2714f1be129fa2d Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Mon, 2 Feb 2026 21:21:16 +0530 Subject: [PATCH] fix(notify): clean up agent dispatch message formatting --- backend/app/integrations/notify.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/backend/app/integrations/notify.py b/backend/app/integrations/notify.py index de43e8ce..f50f01dc 100644 --- a/backend/app/integrations/notify.py +++ b/backend/app/integrations/notify.py @@ -117,9 +117,6 @@ def build_message(ctx: NotifyContext, recipient: Employee) -> str: f"4) Post progress updates via POST $BASE/task-comments (same headers)\n" f"5) When complete: curl -sS -X PATCH $BASE/tasks/{t.id} -H 'X-Actor-Employee-Id: {recipient.id}' " "-H 'Content-Type: application/json' -d '{\"status\":\"done\"}' and post a final summary comment" - f"-H 'X-Actor-Employee-Id: {recipient.id}' " - "-H 'Content-Type: application/json' " - '-d \'{"status":"done"}\' and post a final summary comment' f"{desc_block}" )