mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-18 06:11:49 -05:00
Fixed access to threads refactor
This commit is contained in:
parent
585d55f10d
commit
5f28788180
@ -11,6 +11,7 @@ from aprsd import (
|
|||||||
)
|
)
|
||||||
from aprsd import aprsd as aprsd_main
|
from aprsd import aprsd as aprsd_main
|
||||||
from aprsd.aprsd import cli
|
from aprsd.aprsd import cli
|
||||||
|
from aprsd.threads import rx
|
||||||
|
|
||||||
|
|
||||||
LOG = logging.getLogger("APRSD")
|
LOG = logging.getLogger("APRSD")
|
||||||
@ -95,7 +96,7 @@ def server(ctx, flush):
|
|||||||
plugin_manager = plugin.PluginManager(config)
|
plugin_manager = plugin.PluginManager(config)
|
||||||
plugin_manager.setup_plugins()
|
plugin_manager.setup_plugins()
|
||||||
|
|
||||||
rx_thread = threads.APRSDPluginRXThread(
|
rx_thread = rx.APRSDPluginRXThread(
|
||||||
msg_queues=threads.msg_queues,
|
msg_queues=threads.msg_queues,
|
||||||
config=config,
|
config=config,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user