From 13aac53ff4465768d3479e41a5ee0d0a99e180a1 Mon Sep 17 00:00:00 2001 From: aviruthen <91846056+aviruthen@users.noreply.github.com> Date: Thu, 18 Sep 2025 09:15:17 -0700 Subject: [PATCH] Change execution_id length to be shorter --- src/sagemaker/local/entities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sagemaker/local/entities.py b/src/sagemaker/local/entities.py index 0cf6c6d55a..af74e58179 100644 --- a/src/sagemaker/local/entities.py +++ b/src/sagemaker/local/entities.py @@ -680,7 +680,7 @@ def start(self, **kwargs): """Start a pipeline execution. Returns a _LocalPipelineExecution object.""" from sagemaker.local.pipeline import LocalPipelineExecutor - execution_id = str(uuid4()) + execution_id = str(uuid4()).replace('-', '')[:12] execution = _LocalPipelineExecution( execution_id=execution_id, pipeline=self.pipeline,