Skip to content

Commit c014147

Browse files
committed
URL-encode orchestration version in request URL
1 parent df061de commit c014147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure/durable_functions/models/DurableOrchestrationClient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ def _get_start_new_url(
652652
f'{orchestration_function_name}{instance_path}'
653653

654654
if version is not None:
655-
request_url += f'?version={version}'
655+
request_url += f'?version={quote(version)}'
656656

657657
return request_url
658658

0 commit comments

Comments
 (0)