File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8080ADLS_SAS_TOKEN = "adls.sas-token"
8181ADLS_TENANT_ID = "adls.tenant-id"
8282ADLS_CLIENT_ID = "adls.client-id"
83- ADLS_ClIENT_SECRET = "adls.client-secret"
83+ ADLS_CLIENT_SECRET = "adls.client-secret"
84+ ADLS_ACCOUNT_HOST = "adls.account-host"
8485GCS_TOKEN = "gcs.oauth2.token"
8586GCS_TOKEN_EXPIRES_AT_MS = "gcs.oauth2.token-expires-at"
8687GCS_PROJECT_ID = "gcs.project-id"
Original file line number Diff line number Diff line change 7373 S3_SIGNER_ENDPOINT ,
7474 S3_SIGNER_ENDPOINT_DEFAULT ,
7575 S3_SIGNER_URI ,
76- ADLS_ClIENT_SECRET ,
76+ ADLS_CLIENT_SECRET ,
77+ ADLS_ACCOUNT_HOST ,
7778 FileIO ,
7879 InputFile ,
7980 InputStream ,
@@ -207,7 +208,8 @@ def _adls(properties: Properties) -> AbstractFileSystem:
207208 sas_token = properties .get (ADLS_SAS_TOKEN ),
208209 tenant_id = properties .get (ADLS_TENANT_ID ),
209210 client_id = properties .get (ADLS_CLIENT_ID ),
210- client_secret = properties .get (ADLS_ClIENT_SECRET ),
211+ client_secret = properties .get (ADLS_CLIENT_SECRET ),
212+ account_host = properties .get (ADLS_ACCOUNT_HOST ),
211213 )
212214
213215
You can’t perform that action at this time.
0 commit comments