]> www.average.org Git - loctrkd.git/blobdiff - loctrkd/watch.py
Adjust config to changing messaging topology
[loctrkd.git] / loctrkd / watch.py
index 006ec06d18ab8505c5b712e891f03eb56184b0a2..8e962bc2278dcef0b8eda170116dae0be702df2a 100644 (file)
@@ -21,7 +21,7 @@ def runserver(conf: ConfigParser) -> 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