Skip to content

Commit 3b36f6b

Browse files
authored
Merge pull request #50566 from karthikeyanVK/patch-2
Keep the variable consistant
2 parents 74b9ea5 + fe731c1 commit 3b36f6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-databricks/databricks-extract-load-sql-data-warehouse.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,13 +149,13 @@ In this section, you create a notebook in Azure Databricks workspace and then ru
149149

150150
```scala
151151
val appID = "<appID>"
152-
val password = "<password>"
152+
val secret = "<secret>"
153153
val tenantID = "<tenant-id>"
154154

155155
spark.conf.set("fs.azure.account.auth.type", "OAuth")
156156
spark.conf.set("fs.azure.account.oauth.provider.type", "org.apache.hadoop.fs.azurebfs.oauth2.ClientCredsTokenProvider")
157157
spark.conf.set("fs.azure.account.oauth2.client.id", "<appID>")
158-
spark.conf.set("fs.azure.account.oauth2.client.secret", "<password>")
158+
spark.conf.set("fs.azure.account.oauth2.client.secret", "<secret>")
159159
spark.conf.set("fs.azure.account.oauth2.client.endpoint", "https://login.microsoftonline.com/<tenant-id>/oauth2/token")
160160
spark.conf.set("fs.azure.createRemoteFileSystemDuringInitialization", "true")
161161
```

0 commit comments

Comments
 (0)