Skip to content

Commit 6ebb309

Browse files
committed
add uuid4 to run name
1 parent 03f4b1e commit 6ebb309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_scheduler/scheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ def create_job(self, model: CreateJob) -> str:
513513
mlflow.log_artifact(input_file_path, "input")
514514

515515
mlflow_run = mlflow_client.create_run(
516-
experiment_id=experiment_id, run_name=model.input_filename
516+
experiment_id=experiment_id, run_name=f"{model.input_filename}-{uuid4()}"
517517
)
518518
model.mlflow_run_id = mlflow_run.info.run_id
519519

0 commit comments

Comments
 (0)