diff options
author | PaixuAabuizia <PaixuAabuizia@users.noreply.github.com> | 2016-02-03 11:59:52 +0100 |
---|---|---|
committer | PaixuAabuizia <PaixuAabuizia@users.noreply.github.com> | 2016-02-03 11:59:52 +0100 |
commit | 449de440ae1d3e533291ff6a2f41edd702c7746a (patch) | |
tree | 29eba1cda84520c5b5b7a3d89db0bb6e438a4afb /src/leap | |
parent | c1d2a356f254b6ef9eb59fd941077bbb66025728 (diff) |
[bug] frozen backend fails to spawn on windows
according to [1] the backend should raise a Runtime Error, instead what happens is that the process is spawned again and again but never runs actual code.
[1] https://docs.python.org/2.7/library/multiprocessing.html#multiprocessing.freeze_support
Diffstat (limited to 'src/leap')
-rw-r--r-- | src/leap/bitmask/app.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/leap/bitmask/app.py b/src/leap/bitmask/app.py index 982d8a13..dc1ee6df 100644 --- a/src/leap/bitmask/app.py +++ b/src/leap/bitmask/app.py @@ -237,4 +237,5 @@ def start_app(): if __name__ == "__main__": + multiprocessing.freeze_support() start_app() |