From 674f057c59513ab078cf0d6ce0c97fa3362bc165 Mon Sep 17 00:00:00 2001 From: Omer Lachish Date: Sun, 12 Jan 2020 22:45:32 +0200 Subject: [PATCH] fix typo in azure kusto runner (#4537) --- redash/query_runner/azure_kusto.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/redash/query_runner/azure_kusto.py b/redash/query_runner/azure_kusto.py index eb54f85f81..949f4e3063 100644 --- a/redash/query_runner/azure_kusto.py +++ b/redash/query_runner/azure_kusto.py @@ -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 @@ -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