Skip to content

Commit 13aac53

Browse files
committed
Change execution_id length to be shorter
1 parent 7b865f5 commit 13aac53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sagemaker/local/entities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ def start(self, **kwargs):
680680
"""Start a pipeline execution. Returns a _LocalPipelineExecution object."""
681681
from sagemaker.local.pipeline import LocalPipelineExecutor
682682

683-
execution_id = str(uuid4())
683+
execution_id = str(uuid4()).replace('-', '')[:12]
684684
execution = _LocalPipelineExecution(
685685
execution_id=execution_id,
686686
pipeline=self.pipeline,

0 commit comments

Comments
 (0)