From 5437d2982c2eb0650ca06fa8c45c59188c983eb8 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sat, 4 Apr 2026 09:33:29 +0000 Subject: fix: ShipStory — use context.Background() to avoid request context cancellation killing deploy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/executor/executor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal') diff --git a/internal/executor/executor.go b/internal/executor/executor.go index ad79a84..ac528c6 100644 --- a/internal/executor/executor.go +++ b/internal/executor/executor.go @@ -593,7 +593,7 @@ func (p *Pool) ShipStory(ctx context.Context, storyID string) error { if story.Status != task.StoryShippable { return fmt.Errorf("story is not SHIPPABLE (current status: %s)", story.Status) } - go p.triggerStoryDeploy(ctx, storyID) + go p.triggerStoryDeploy(context.Background(), storyID) return nil } -- cgit v1.2.3