mirror of https://github.com/databricks/cli.git
Fix `databricks configure` if new profile is specified (#1030)
## Changes The code included the to-be-created profile in the configuration and that triggered the SDK to try and load it. Instead, we must use the specified host and token directly. ## Tests Manually. More integration test coverage tbd.
This commit is contained in:
parent
65458cbde6
commit
4a228e6f12
|
@ -42,7 +42,11 @@ func configureInteractive(cmd *cobra.Command, flags *configureFlags, cfg *config
|
||||||
|
|
||||||
// Ask user to specify a cluster if not already set.
|
// Ask user to specify a cluster if not already set.
|
||||||
if flags.ConfigureCluster && cfg.ClusterID == "" {
|
if flags.ConfigureCluster && cfg.ClusterID == "" {
|
||||||
w, err := databricks.NewWorkspaceClient((*databricks.Config)(cfg))
|
// Create workspace client with configuration without the profile name set.
|
||||||
|
w, err := databricks.NewWorkspaceClient(&databricks.Config{
|
||||||
|
Host: cfg.Host,
|
||||||
|
Token: cfg.Token,
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue