Hide Forgot
in proxy.py in RequestTimer class the offending line is: logger.exception() It should be: logger.exception(str(e)) This causes any issue with the thread that keep the proxy process logged in, as if there is an exception it will not log and recover as it is supposed to.
Better would be something like logger.exception('Failed to login to Beaker server') The .exception() method already adds the complete stack trace from the exception so str(e) is not necessary.
This was already pushed on the 0.8.1 branch as a hotfix