tom-s-powell opened a new pull request, #2461:
URL: https://github.com/apache/iceberg-python/pull/2461
The current logic when constructing an ADLS file system incorrectly matches
`adls.sas-token-expires-at-ms.` prefixed keys. If this is provided and
encountered prior to `adls.sas-token.` prefixed keys, it will incorrectly
determine the `ADLS_ACCOUNT_NAME` and `ADLS_SAS_TOKEN`.
For example with the following properties:
```
{
'adls.sas-token-expires-at-ms.testaccount.dfs.core.windows.net':
'1757597218121',
'adls.sas-token.testaccount.dfs.core.windows.net': '<redacted>'
}
```
**Before**
```
{
'adls.sas-token-expires-at-ms.testaccount.dfs.core.windows.net':
'1757597218121',
'adls.sas-token.testaccount.dfs.core.windows.net': '<redacted>',
'adls.account-name': 'adls',
'adls.sas-token': '1757597218121'
}
```
**After**
```
{
'adls.sas-token-expires-at-ms.testaccount.dfs.core.windows.net':
'1757597218121',
'adls.sas-token.testaccount.dfs.core.windows.net': '<redacted>',
'adls.account-name': 'testaccount',
'adls.sas-token': '<redacted>'
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]