1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-12-20 00:26:04 -05:00

Fixed main server client initialization

This fixes the usage of the singleton client class which
houses/creates the aprslib client.  We were getting multiple
logins, now we get one.
This commit is contained in:
Hemna 2021-01-14 15:44:07 -05:00
parent 53bb6bed2b
commit 7486770bdc

View File

@ -430,7 +430,7 @@ def server(
plugin_manager.setup_plugins()
try:
cl = client.Client(config)
cl.setup_connection()
cl.client
except LoginError:
sys.exit(-1)