Skip to content

Commit

Permalink
Fix context propagation in bundle/deploy/terraform (#2208)
Browse files Browse the repository at this point in the history
  • Loading branch information
denik authored Jan 22, 2025
1 parent 667302b commit 54a4708
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundle/deploy/terraform/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (m *initialize) findExecPath(ctx context.Context, b *bundle.Bundle, tf *con
return tf.ExecPath, nil
}

binDir, err := b.CacheDir(context.Background(), "bin")
binDir, err := b.CacheDir(ctx, "bin")
if err != nil {
return "", err
}
Expand Down

0 comments on commit 54a4708

Please sign in to comment.