Skip to content

Commit

Permalink
fix typo in azure kusto runner (#4537)
Browse files Browse the repository at this point in the history
  • Loading branch information
Omer Lachish authored Jan 12, 2020
1 parent aa17681 commit 674f057
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions redash/query_runner/azure_kusto.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


try:
from azure.kusto.data.request import KustoClient, KustoConnectionStringBuilder, ClientRequestProperites
from azure.kusto.data.request import KustoClient, KustoConnectionStringBuilder, ClientRequestProperties
from azure.kusto.data.exceptions import KustoServiceError

enabled = True
Expand All @@ -36,11 +36,11 @@
class AzureKusto(BaseQueryRunner):
should_annotate_query = False
noop_query = "let noop = datatable (Noop:string)[1]; noop"

def __init__(self, configuration):
super(AzureKusto, self).__init__(configuration)
self.syntax = "custom"
self.client_request_properties = ClientRequestProperites()
self.client_request_properties = ClientRequestProperties()
self.client_request_properties.application = "redash"

@classmethod
Expand Down

0 comments on commit 674f057

Please sign in to comment.