diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-07-24 12:54:12 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-12-19 17:15:55 -0300 |
commit | df160c0d44e8d0439d54313f097b2a4d9ada7357 (patch) | |
tree | c3d2cb9f68f696bc9377dbaf20897cf0a560afde /src/leap/bitmask/frontend_app.py | |
parent | 30b02e9153b21d177bf0f79e7132157bf25b636d (diff) |
Allow frontend and backend to be run separately.
Add the 'check_online' method to check whether the backend is accessible
or not.
Reduce the wait for running threads timeout on quit.
Add retry feature to the backend requests send.
Diffstat (limited to 'src/leap/bitmask/frontend_app.py')
-rw-r--r-- | src/leap/bitmask/frontend_app.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/frontend_app.py b/src/leap/bitmask/frontend_app.py index 909005f0..b0a149f9 100644 --- a/src/leap/bitmask/frontend_app.py +++ b/src/leap/bitmask/frontend_app.py @@ -54,7 +54,7 @@ def signal_handler(window, pid, signum, frame): window.quit() -def run_frontend(options, flags_dict, backend_pid): +def run_frontend(options, flags_dict, backend_pid=None): """ Run the GUI for the application. |