We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18a5d71 commit 26a0a9eCopy full SHA for 26a0a9e
1 file changed
ucloud/core/client/_client.py
@@ -1,6 +1,7 @@
1
import typing
2
import logging
3
import sys
4
+import time
5
6
from ucloud import version
7
from ucloud.core.client._cfg import Config
@@ -158,6 +159,7 @@ def _build_http_request(self, args: dict) -> Request:
158
159
headers={
160
"User-Agent": self._build_user_agent(),
161
"Content-Type": "application/x-www-form-urlencoded",
162
+ "U-Timestamp-Ms": str(int(round(time.time() * 1000))),
163
},
164
)
165
0 commit comments