diff --git a/trustgraph-base/pyproject.toml b/trustgraph-base/pyproject.toml index c4ef3c27..9a679062 100644 --- a/trustgraph-base/pyproject.toml +++ b/trustgraph-base/pyproject.toml @@ -17,6 +17,7 @@ dependencies = [ "pika", "confluent-kafka", "pyyaml", + "websockets", ] classifiers = [ "Programming Language :: Python :: 3", diff --git a/trustgraph-base/trustgraph/base/async_processor.py b/trustgraph-base/trustgraph/base/async_processor.py index a7ce4961..9741d2f5 100644 --- a/trustgraph-base/trustgraph/base/async_processor.py +++ b/trustgraph-base/trustgraph/base/async_processor.py @@ -209,6 +209,8 @@ class AsyncProcessor: # Call the handler once per workspace for ws, config in per_ws.items(): + if ws.startswith("_"): + continue await entry["handler"](ws, config, version) logger.info( @@ -310,6 +312,8 @@ class AsyncProcessor: per_ws.setdefault(ws, {})[t] = kv for ws, config in per_ws.items(): + if ws.startswith("_"): + continue await entry["handler"]( ws, config, notify_version, )