summaryrefslogtreecommitdiff
path: root/internal/executor/executor.go
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-04-04 09:33:29 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-04-04 09:33:29 +0000
commit5437d2982c2eb0650ca06fa8c45c59188c983eb8 (patch)
treedf002ccb6cbbbb305ddccbd7dc0260634f3756a0 /internal/executor/executor.go
parent940a5bab031bfe81cea9c90d64e6ebc804c366f9 (diff)
fix: ShipStory — use context.Background() to avoid request context cancellation killing deploy
Diffstat (limited to 'internal/executor/executor.go')
-rw-r--r--internal/executor/executor.go2
1 files changed, 1 insertions, 1 deletions
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
}