From c9121debc2998ec6245fe858781eae11c62abd84 Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Sun, 19 Sep 2021 22:20:03 +0300 Subject: [PATCH] Fix typo --- examples/pipeline/pipeline_from_decorator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/pipeline/pipeline_from_decorator.py b/examples/pipeline/pipeline_from_decorator.py index 18bd48c2..1ca78918 100644 --- a/examples/pipeline/pipeline_from_decorator.py +++ b/examples/pipeline/pipeline_from_decorator.py @@ -89,7 +89,7 @@ def executing_pipeline(pickle_url, mock_parameter='mock'): if __name__ == '__main__': # set the pipeline steps default execution queue (per specific step we can override it with the decorator) - PipelineDecorator.set_default_execution_queue('moshik') + PipelineDecorator.set_default_execution_queue('default') # run the pipeline steps as subprocess on the current machine, for debugging purposes # PipelineDecorator.debug_pipeline()