We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc0235e commit 0031e4dCopy full SHA for 0031e4d
influxdb/client.py
@@ -1243,7 +1243,7 @@ def _parse_netloc(netloc):
1243
1244
def _msgpack_parse_hook(code, data):
1245
if code == 5:
1246
- (epoch_s, epoch_ns) = struct.unpack(">QI", data)
+ (epoch_s, epoch_ns) = struct.unpack(">qI", data)
1247
timestamp = datetime.datetime.utcfromtimestamp(epoch_s)
1248
timestamp += datetime.timedelta(microseconds=(epoch_ns / 1000))
1249
return timestamp.isoformat() + 'Z'
0 commit comments