diff options
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 } |
