Comment 1 for bug 665299

Revision history for this message
Brendan Donegan (brendan-donegan) wrote :

Oh it does exit eventually - after 60 days :)

Yeah, I debugged through this and found that constructing a timedelta with timedelta(60) for example takes the 60 to mean days by default. Merge request is on its way but the simple solution is:

if datetime.now() - start > timedelta(seconds=60):