You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
diff --git a/azure-kusto-data/azure/kusto/data/kcsb.py b/azure-kusto-data/azure/kusto/data/kcsb.py
index 3289964..b7a9a87 100644
--- a/azure-kusto-data/azure/kusto/data/kcsb.py+++ b/azure-kusto-data/azure/kusto/data/kcsb.py@@ -65,9 +65,9 @@ class KustoConnectionStringBuilder:
return cls.application_token
if key in ["user token", "usertoken", "usrtoken"]:
return cls.user_token
- if key in ["msi_auth"]:+ if key in ["msi_auth", "msi authentication"]:
return cls.msi_auth
- if key in ["msi_type"]:+ if key in ["msi_params", "msi params"]:
return cls.msi_params
if key in ["az cli"]:
return cls.az_cli
Output of pip freeze
[paste the output of pip freeze here below this line]
The text was updated successfully, but these errors were encountered:
creste
added a commit
to creste/azure-kusto-python
that referenced
this issue
Dec 2, 2022
Code Sample, a copy-pastable example if possible
This code:
Throws this exception:
Problem description
KustoConnectionStringBuilder
serializesValidKeywords.msi_auth
andValidKeywords.msi_params
using these keys:See:
azure-kusto-python/azure-kusto-data/azure/kusto/data/kcsb.py
Lines 33 to 34 in 5405e81
When deserializing, only these keys are allowed:
See:
azure-kusto-python/azure-kusto-data/azure/kusto/data/kcsb.py
Lines 68 to 71 in 5405e81
This fixes the problem:
Output of
pip freeze
[paste the output of
pip freeze
here below this line]The text was updated successfully, but these errors were encountered: