From 4e8f004410c5be203239197a1ad6c2c5aaa328b3 Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Sat, 3 May 2025 00:16:45 +0100 Subject: [PATCH] Fix bug --- trustgraph-flow/trustgraph/gateway/dispatch/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trustgraph-flow/trustgraph/gateway/dispatch/manager.py b/trustgraph-flow/trustgraph/gateway/dispatch/manager.py index ff9dc8ad..ddd396a1 100644 --- a/trustgraph-flow/trustgraph/gateway/dispatch/manager.py +++ b/trustgraph-flow/trustgraph/gateway/dispatch/manager.py @@ -204,7 +204,7 @@ class DispatcherManager: flow = params.get("flow") kind = params.get("kind") - return await self.invoke(data, responder, flow, kind) + return await self.invoke_flow_service(data, responder, flow, kind) async def invoke_flow_service(self, data, responder, flow, kind):