Skip to content

Commit

Permalink
Restore number of threads, maybe it will solve threaded deadlock?
Browse files Browse the repository at this point in the history
  • Loading branch information
coretl committed Apr 27, 2017
1 parent 8cf6ea0 commit f6b0382
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion malcolm/core/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def start(self, timeout=None):
num_threads = 8
else:
num_threads = 128
self._thread_pool = ThreadPool()#num_threads)
self._thread_pool = ThreadPool(num_threads)
self.started = True
self._run_hook(self.Init, timeout=timeout)
self._run_hook(
Expand Down

0 comments on commit f6b0382

Please sign in to comment.