]> www.average.org Git - loctrkd.git/blobdiff - loctrkd/collector.py
Adjust config to changing messaging topology
[loctrkd.git] / loctrkd / collector.py
index 75cd33b861c374021c12d478631eff22c3cfcc4a..17c98d5d98326af76dad80c2dc760bb3fb19c4ce 100644 (file)
@@ -184,7 +184,7 @@ def runserver(conf: ConfigParser, handle_hibernate: bool = True) -> None:
     global pmods
     pmods = [
         cast(ProtoModule, import_module("." + modnm, __package__))
-        for modnm in conf.get("collector", "protocols").split(",")
+        for modnm in conf.get("common", "protocols").split(",")
     ]
     # Is this https://github.com/zeromq/pyzmq/issues/1627 still not fixed?!
     zctx = zmq.Context()  # type: ignore