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 7b865f5 commit 13aac53Copy full SHA for 13aac53
src/sagemaker/local/entities.py
@@ -680,7 +680,7 @@ def start(self, **kwargs):
680
"""Start a pipeline execution. Returns a _LocalPipelineExecution object."""
681
from sagemaker.local.pipeline import LocalPipelineExecutor
682
683
- execution_id = str(uuid4())
+ execution_id = str(uuid4()).replace('-', '')[:12]
684
execution = _LocalPipelineExecution(
685
execution_id=execution_id,
686
pipeline=self.pipeline,
0 commit comments