File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -779,7 +779,7 @@ def get_api_version(self, path):
779
779
# For example, "/services/search/jobs" is using API v1
780
780
api_version = 1
781
781
782
- versionSearch = re .search ('(?:servicesNS\/[^/]+\/[^/]+|services)\/[^/]+\/v(\d+)\/' , path )
782
+ versionSearch = re .search (r '(?:servicesNS\/[^/]+\/[^/]+|services)\/[^/]+\/v(\d+)\/' , path )
783
783
if versionSearch :
784
784
api_version = int (versionSearch .group (1 ))
785
785
@@ -3999,4 +3999,4 @@ def batch_save(self, *documents):
3999
3999
data = json .dumps (documents )
4000
4000
4001
4001
return json .loads (
4002
- self ._post ('batch_save' , headers = KVStoreCollectionData .JSON_HEADER , body = data ).body .read ().decode ('utf-8' ))
4002
+ self ._post ('batch_save' , headers = KVStoreCollectionData .JSON_HEADER , body = data ).body .read ().decode ('utf-8' ))
You can’t perform that action at this time.
0 commit comments