File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Release History
22
3- ## 1.22.2 (2024-11-18 )
3+ ## 1.22.4 (2024-11-21 )
44
55### Bugs Fixed
6- - ** #3620407 ** - Fix Datastore credentials show up as NoneCredentials
7-
8- ## 1.22.1 (2024-11-13)
9-
10- ### Bugs Fixed
11- - ** #38493 ** - Fix error NoneType object is not subscriptable
6+ - ** #38609 ** - Fix Datastore credentials for Account key base
127
138## 1.22.3 (2024-11-20)
149
Original file line number Diff line number Diff line change 22# Copyright (c) Microsoft Corporation. All rights reserved.
33# ---------------------------------------------------------
44
5- VERSION = "1.22.3 "
5+ VERSION = "1.22.4 "
Original file line number Diff line number Diff line change @@ -30,7 +30,12 @@ def from_rest_datastore_credentials(
3030 config_class : Any = NoneCredentialConfiguration
3131
3232 if isinstance (rest_credentials , (models .AccountKeyDatastoreCredentials , models2024 .AccountKeyDatastoreCredentials )):
33- config_class = AccountKeyConfiguration
33+ # we are no more using key for key base account.
34+ # https://github.com/Azure/azure-sdk-for-python/pull/35716
35+ if isinstance (rest_credentials .secrets , models2024 .SasDatastoreSecrets ):
36+ config_class = SasTokenConfiguration
37+ else :
38+ config_class = AccountKeyConfiguration
3439 elif isinstance (rest_credentials , (models .SasDatastoreCredentials , models2024 .SasDatastoreCredentials )):
3540 config_class = SasTokenConfiguration
3641 elif isinstance (
You can’t perform that action at this time.
0 commit comments