From d78fd452598b84d1f1c0f1d2e346bc3d896f74db Mon Sep 17 00:00:00 2001 From: Hiroshi Yoshioka <40815708+hyoshioka0128@users.noreply.github.com> Date: Sun, 25 Dec 2022 00:14:04 +0900 Subject: [PATCH] =?UTF-8?q?Typo=20"resouce"=E2=86=92"resource"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/Azure/azure-cosmos-python/blob/master/azure/cosmos/cosmos_client.py #PingMSFTDocs --- azure/cosmos/cosmos_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure/cosmos/cosmos_client.py b/azure/cosmos/cosmos_client.py index c52a08b..4e68ee7 100644 --- a/azure/cosmos/cosmos_client.py +++ b/azure/cosmos/cosmos_client.py @@ -930,7 +930,7 @@ def _QueryChangeFeed(self, collection_link, resource_type, options=None, partiti resource_key_map = {'Documents' : 'docs'} - # For now, change feed only supports Documents and Partition Key Range resouce type + # For now, change feed only supports Documents and Partition Key Range resource type if resource_type not in resource_key_map: raise NotImplementedError(resource_type + " change feed query is not supported.")