Bug fixes

- Fixed KeyError in execute_in_tab
- Changed the plugin process dispatch method, this *should* fix that annoying server hang issue.
This commit is contained in:
marios
2022-04-29 12:52:24 +03:00
parent fe1f6473e9
commit 7d74e98f4f
3 changed files with 7 additions and 11 deletions
+1 -4
View File
@@ -73,10 +73,7 @@ class PluginWrapper:
def start(self):
if self.passive:
return self
get_event_loop().run_in_executor(
ProcessPoolExecutor(),
self._init
)
ProcessPoolExecutor().submit(self._init, self)
return self
def stop(self):