You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that services using itsdangerous 0.24 can't communicate with 1.1.0 and timestamp singer fails with too old timestamp error.
0.24 has:
def get_timestamp(self):
"""Returns the current timestamp. This implementation returns the
seconds since 1/1/2011. The function must return an integer.
"""
return int(time.time() - EPOCH)
But 1.1 has:
def get_timestamp(self):
"""Returns the current timestamp. The function must return an
integer.
"""
return int(time.time())
In its implementation.
The text was updated successfully, but these errors were encountered:
Hi,
It seems that services using itsdangerous 0.24 can't communicate with 1.1.0 and timestamp singer fails with too old timestamp error.
0.24 has:
But 1.1 has:
In its implementation.
The text was updated successfully, but these errors were encountered: