Fix context propagation in bundle/deploy/terraform (#2208)

https://github.com/databricks/cli/pull/747#discussion_r1925248116
This commit is contained in:
Denis Bilenko 2025-01-22 14:28:13 +01:00 committed by GitHub
parent 667302b61b
commit 54a470837c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ func (m *initialize) findExecPath(ctx context.Context, b *bundle.Bundle, tf *con
return tf.ExecPath, nil return tf.ExecPath, nil
} }
binDir, err := b.CacheDir(context.Background(), "bin") binDir, err := b.CacheDir(ctx, "bin")
if err != nil { if err != nil {
return "", err return "", err
} }