Skip to content

Commit d6888a8

Browse files
authored
Merge pull request #97062 from subashkonar13/patch-1
Update apache-spark-secure-credentials-with-tokenlibrary.md
2 parents 5e3eb2c + 0fd96b8 commit d6888a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/synapse-analytics/spark/apache-spark-secure-credentials-with-tokenlibrary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ display(df.limit(10))
107107
```python
108108
%%pyspark
109109
# Python code
110-
val source_full_storage_account_name = "teststorage.dfs.core.windows.net"
110+
source_full_storage_account_name = "teststorage.dfs.core.windows.net"
111111
spark.conf.set(f"spark.storage.synapse.{source_full_storage_account_name}.linkedServiceName", "<lINKED SERVICE NAME>")
112112
spark.conf.set(f"fs.azure.account.auth.type.{source_full_storage_account_name}", "SAS")
113113
spark.conf.set(f"fs.azure.sas.token.provider.type.{source_full_storage_account_name}", "com.microsoft.azure.synapse.tokenlibrary.LinkedServiceBasedSASProvider")
@@ -141,7 +141,7 @@ display(df.limit(10))
141141
```python
142142
%%pyspark
143143
# Python code
144-
val source_full_storage_account_name = "teststorage.dfs.core.windows.net"
144+
source_full_storage_account_name = "teststorage.dfs.core.windows.net"
145145
spark.conf.set(f"spark.storage.synapse.{source_full_storage_account_name}.linkedServiceName", "<LINKED SERVICE NAME>")
146146
spark.conf.set(f"fs.azure.account.oauth.provider.type.{source_full_storage_account_name}", "com.microsoft.azure.synapse.tokenlibrary.LinkedServiceBasedTokenProvider")
147147

0 commit comments

Comments
 (0)