Skip to content

Commit a14a1b9

Browse files
committed
Change order of params in query param string
1 parent 234f89d commit a14a1b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

temporalio/nexus/_link_conversion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ def _event_reference_to_query_params(
9595
)
9696
return urllib.parse.urlencode(
9797
{
98-
"referenceType": "EventReference",
99-
"eventType": event_type_name,
10098
"eventID": event_ref.event_id,
99+
"eventType": event_type_name,
100+
"referenceType": "EventReference",
101101
}
102102
)
103103

0 commit comments

Comments
 (0)