We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95d5a02 commit 74a14beCopy full SHA for 74a14be
src/zenml/integrations/aws/orchestrators/sagemaker_orchestrator.py
@@ -463,7 +463,13 @@ def prepare_or_run_pipeline(
463
)
464
465
pipeline.create(
466
- role_arn=self.config.execution_role, tags=settings.pipeline_tags
+ role_arn=self.config.execution_role,
467
+ tags=[
468
+ {"Key": key, "Value": value}
469
+ for key, value in settings.pipeline_tags.items()
470
+ ]
471
+ if settings.pipeline_tags
472
+ else None,
473
474
execution = pipeline.start()
475
logger.warning(
0 commit comments