From a624ab8113989e9197fbb19b1afb18be2bd676ac Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Tue, 12 Nov 2024 11:40:50 +0100 Subject: [PATCH] Don't pass tags to step config (#3186) --- src/zenml/zen_server/template_execution/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zenml/zen_server/template_execution/utils.py b/src/zenml/zen_server/template_execution/utils.py index 34831d8902..cdf77e1489 100644 --- a/src/zenml/zen_server/template_execution/utils.py +++ b/src/zenml/zen_server/template_execution/utils.py @@ -350,7 +350,7 @@ def deployment_request_from_template( ) step_config_dict_base = pipeline_configuration.model_dump( - exclude={"name", "parameters"} + exclude={"name", "parameters", "tags"} ) steps = {} for invocation_id, step in deployment.step_configurations.items():