1
0
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:
Hemna 2022-07-28 13:54:16 -04:00
parent 585d55f10d
commit 5f28788180

View File

@ -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,
) )