From 127177a8f373e08dc2c6c9c7cbba462f8969de0c Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Tue, 21 Nov 2023 09:40:25 +0100 Subject: [PATCH] Remove user name from orchestrator run name --- src/zenml/orchestrators/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/zenml/orchestrators/utils.py b/src/zenml/orchestrators/utils.py index eda1b9fedb6..108acf16a96 100644 --- a/src/zenml/orchestrators/utils.py +++ b/src/zenml/orchestrators/utils.py @@ -52,8 +52,7 @@ def get_orchestrator_run_name(pipeline_name: str) -> str: Returns: The orchestrator run name. """ - user_name = Client().active_user.name - return f"{pipeline_name}_{user_name}_{random.Random().getrandbits(32):08x}" + return f"{pipeline_name}_{random.Random().getrandbits(128):32x}" def get_run_id_for_orchestrator_run_id(