aboutsummaryrefslogtreecommitdiffstats
path: root/ms/py-executor/blueprints_grpc/blueprint_processing_server.py
diff options
context:
space:
mode:
Diffstat (limited to 'ms/py-executor/blueprints_grpc/blueprint_processing_server.py')
-rw-r--r--ms/py-executor/blueprints_grpc/blueprint_processing_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ms/py-executor/blueprints_grpc/blueprint_processing_server.py b/ms/py-executor/blueprints_grpc/blueprint_processing_server.py
index 0c432d4cd..f1f29a035 100644
--- a/ms/py-executor/blueprints_grpc/blueprint_processing_server.py
+++ b/ms/py-executor/blueprints_grpc/blueprint_processing_server.py
@@ -46,4 +46,4 @@ class BluePrintProcessingServer(BluePrintProcessing_pb2_grpc.BluePrintProcessing
# Get the Dynamic Process Instance based on request
instance: AbstractScriptFunction = instance_for_input(self.configuration, request)
instance.set_context(context)
- return instance.process(request)
+ yield from instance.process(request)