diff options
| author | Peter Stone <thepeterstone@gmail.com> | 2026-04-04 09:33:29 +0000 |
|---|---|---|
| committer | Peter Stone <thepeterstone@gmail.com> | 2026-04-04 09:33:29 +0000 |
| commit | 5437d2982c2eb0650ca06fa8c45c59188c983eb8 (patch) | |
| tree | df002ccb6cbbbb305ddccbd7dc0260634f3756a0 /internal | |
| parent | 940a5bab031bfe81cea9c90d64e6ebc804c366f9 (diff) | |
fix: ShipStory — use context.Background() to avoid request context cancellation killing deploy
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/executor/executor.go | 2 |
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 } |
