From 9c242314aea5d3ec14a089304696e88c3dd9f60c Mon Sep 17 00:00:00 2001 From: seankane-msft Date: Mon, 7 Jun 2021 12:22:54 -0700 Subject: [PATCH] fixing a typo, thanks Jose! --- .../azure-data-tables/azure/data/tables/_common_conversion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/tables/azure-data-tables/azure/data/tables/_common_conversion.py b/sdk/tables/azure-data-tables/azure/data/tables/_common_conversion.py index b11370952964..180dc2193a0c 100644 --- a/sdk/tables/azure-data-tables/azure/data/tables/_common_conversion.py +++ b/sdk/tables/azure-data-tables/azure/data/tables/_common_conversion.py @@ -89,7 +89,7 @@ def _sign_string(key, string_to_sign, key_is_base64=True): def _is_cosmos_endpoint(url): - if ".table.cosmodb." in url.hostname: + if ".table.cosmosdb." in url.hostname: return True if ".table.cosmos." in url.hostname: return True