mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
Fix load-doc (#610)
This commit is contained in:
parent
b08db761d7
commit
387afee7b7
1 changed files with 2 additions and 2 deletions
|
|
@ -258,11 +258,11 @@ class Processor(AsyncProcessor):
|
|||
|
||||
logger.info(f"Configuration version: {version}")
|
||||
|
||||
if "flows" in config:
|
||||
if "flow" in config:
|
||||
|
||||
self.flows = {
|
||||
k: json.loads(v)
|
||||
for k, v in config["flows"].items()
|
||||
for k, v in config["flow"].items()
|
||||
}
|
||||
|
||||
logger.debug(f"Flows: {self.flows}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue