Skip to content

Commit 8af8708

Browse files
committed
Apply make fmt
1 parent 365e278 commit 8af8708

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

compute/resource_cluster.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,8 @@ func fixInstancePoolChangeIfAny(d *schema.ResourceData, cluster *Cluster) {
255255
oldInstancePool, newInstancePool := d.GetChange("instance_pool_id")
256256
oldDriverPool, newDriverPool := d.GetChange("driver_instance_pool_id")
257257
if oldInstancePool != newInstancePool &&
258-
oldDriverPool == oldInstancePool &&
259-
oldDriverPool == newDriverPool {
258+
oldDriverPool == oldInstancePool &&
259+
oldDriverPool == newDriverPool {
260260
cluster.DriverInstancePoolID = cluster.InstancePoolID
261261
}
262262
}

identity/resource_token_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ func TestResourceTokenDelete_NotFoundNoError(t *testing.T) {
225225
Method: "POST",
226226
Resource: "/api/2.0/token/delete",
227227
Response: common.NotFound("RESOURCE_DOES_NOT_EXIST"), // per documentation this is the error response
228-
Status: 404,
228+
Status: 404,
229229
},
230230
},
231231
Resource: ResourceToken(),

provider/provider.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ func providerSchema() map[string]*schema.Schema {
124124
ps["azure_client_secret"].Sensitive = true
125125

126126
azCoordinatesDeprecation := "`%s` is deprecated and would be removed in v0.4.0. Please rewrite provider configuration " +
127-
"with `host = data.azurerm_databricks_workspace.example.workspace_url` to achieve the same effect. " +
127+
"with `host = data.azurerm_databricks_workspace.example.workspace_url` to achieve the same effect. " +
128128
"ARM_* environment variables would continue to be used as they're used by `azurerm` provider. See " +
129129
"https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/data-sources/databricks_workspace#workspace_url for details"
130130
ps["azure_workspace_name"].Deprecated = fmt.Sprintf(azCoordinatesDeprecation, "azure_workspace_name")

storage/mounts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func getOrCreateMountingCluster(clustersAPI compute.ClustersAPI) (string, error)
131131
SparkConf: map[string]string{
132132
"spark.master": "local[*]",
133133
"spark.databricks.cluster.profile": "singleNode",
134-
"spark.scheduler.mode": "FIFO",
134+
"spark.scheduler.mode": "FIFO",
135135
},
136136
CustomTags: map[string]string{
137137
"ResourceClass": "SingleNode",

0 commit comments

Comments
 (0)