Skip to content

Commit ded6ed8

Browse files
committed
change request ID delimiter
1 parent aaef97f commit ded6ed8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

umapi_client/connection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def make_call(self, path, body=None, delete=False):
481481
:param body: (optional) list of dictionaries to be serialized into the request body
482482
:return: the requests.result object (on 200 response), raise error otherwise
483483
"""
484-
extra_headers = {"X-Request-Id": f"{self.uuid} {int(datetime.now().timestamp()*1000)}"}
484+
extra_headers = {"X-Request-Id": f"{self.uuid}_{int(datetime.now().timestamp()*1000)}"}
485485
# if the sync_started or sync_ended flags are set, send a header for any type of call
486486
if self.sync_started:
487487
self.logger.info("Sending start_sync signal")

0 commit comments

Comments
 (0)