Skip to content

Commit

Permalink
Fixed wrong kwargs and bumped version for release (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah authored Jun 1, 2021
1 parent d2589ab commit e030193
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion azure-kusto-data/azure/kusto/data/_token_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ async def _get_token_impl_async(self) -> Optional[dict]:
if self._az_auth_context_async is None:
self._az_auth_context_async = AsyncAzureCliCredential()

self._az_token = await self._az_auth_context_async.get_token(self._kusto_uri, self._az_kwargs)
self._az_token = await self._az_auth_context_async.get_token(self._kusto_uri)
return {TokenConstants.AZ_TOKEN_TYPE: TokenConstants.BEARER_TYPE, TokenConstants.AZ_ACCESS_TOKEN: self._az_token.token}
except Exception as e:
raise KustoClientError(
Expand Down
2 changes: 1 addition & 1 deletion azure-kusto-data/azure/kusto/data/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License
VERSION = "2.1.1"
VERSION = "2.1.2"
2 changes: 1 addition & 1 deletion azure-kusto-ingest/azure/kusto/ingest/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License
VERSION = "2.1.1"
VERSION = "2.1.2"

0 comments on commit e030193

Please sign in to comment.