Compare commits

...

2 commits

Author SHA1 Message Date
cybermaggedon
89f058d35b
Fix erroneous handling of __template__ and __system__ workspaces (#860)
__template__ and __system__ are not real workspace but config
zones for workspace template and init handling.  They should not
be processed as workspaces.

Now ignores workspace beginning with '_' prefix.
2026-04-30 09:53:58 +01:00
cybermaggedon
69b0b9b326
Add missing websockets dep (#859)
Added 'websockets' to pyproject.toml in trustgraph-base
2026-04-30 09:53:32 +01:00
2 changed files with 5 additions and 0 deletions

View file

@ -17,6 +17,7 @@ dependencies = [
"pika",
"confluent-kafka",
"pyyaml",
"websockets",
]
classifiers = [
"Programming Language :: Python :: 3",

View file

@ -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,
)