forked from platypush/platypush
get_bus() should return a default RedisBus() instance if the main bus is not registered
This commit is contained in:
parent
4ee7e4db29
commit
9c25a131fa
1 changed files with 5 additions and 2 deletions
|
@ -133,9 +133,12 @@ def get_plugin(plugin_name, reload=False):
|
|||
|
||||
def get_bus() -> Bus:
|
||||
global main_bus
|
||||
assert main_bus, 'The bus is not registered'
|
||||
if main_bus:
|
||||
return main_bus
|
||||
|
||||
from platypush.bus.redis import RedisBus
|
||||
return RedisBus()
|
||||
|
||||
|
||||
def get_or_create_event_loop():
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue