mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
allow one hour in the future
This commit is contained in:
parent
1bb8dcfacc
commit
796309a2ad
1 changed files with 1 additions and 1 deletions
|
|
@ -267,7 +267,7 @@ class session(object):
|
|||
if not all([safe("recipient", recipient), safe("csr", csr)]):
|
||||
self.die(r, r.BadRequest, uri="%sillegalcharacter" % error_uri)
|
||||
return
|
||||
if timestamp - time.time() > 5:
|
||||
if timestamp - time.time() > 3600:
|
||||
self.die(r, r.BadRequest, uri="%sfuture" % error_uri)
|
||||
return
|
||||
if time.time() - timestamp > 100:
|
||||
|
|
|
|||
Loading…
Reference in a new issue