We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4202f3c commit b17a025Copy full SHA for b17a025
1 file changed
src/bapi/db.py
@@ -82,7 +82,6 @@ def is_valid_session_creation(cls, ip, seeker_port, nonce, valid_duration):
82
return (False, "invalid")
83
else:
84
db_session.delete(valid_nonce)
85
- print(valid_nonce.seconds_since_creation)
86
if valid_nonce.seconds_since_creation > (valid_duration or 240):
87
return (False, "expired")
88
return (True, "")
0 commit comments