Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions acceptance/internal/prepare_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,12 @@ func PrepareServerAndClient(t *testing.T, config TestConfig, logRequests bool, o
cfg = &sdkconfig.Config{
Host: host,
Token: token,
// Preserve the resolved config-file path (e.g. deco sets it to /dev/null)
// so the CLI subprocess stays isolated from the developer's ~/.databrickscfg,
// matching the non-proxy path. Otherwise the subprocess re-reads the default
// config and can fall back to a default_profile (e.g. via [__settings__]),
// which breaks auth on cloud record-requests runs.
ConfigFile: cfg.ConfigFile,
}
}

Expand Down
Loading