no need for shared instances here

This commit is contained in:
Jakob Ketterl
2019-09-15 21:10:30 +02:00
parent 5b6edd110d
commit b0b2df5422
2 changed files with 4 additions and 11 deletions

View File

@ -7,7 +7,7 @@ from owrx.feature import FeatureDetector
from owrx.source import SdrService, ClientRegistry
from socketserver import ThreadingMixIn
from owrx.sdrhu import SdrHuUpdater
from owrx.service import ServiceManager
from owrx.service import Services
import logging
@ -48,7 +48,7 @@ Author contact info: Andras Retzler, HA7ILM <randras@sdr.hu>
updater = SdrHuUpdater()
updater.start()
ServiceManager.getSharedInstance().start()
Services.start()
server = ThreadedHttpServer(("0.0.0.0", pm.getPropertyValue("web_port")), RequestHandler)
server.serve_forever()