Skip to content

Commit

Permalink
Rename variable in start_run()
Browse files Browse the repository at this point in the history
Signed-off-by: Matheus Moreno <matheus.moreno@hurb.com>
  • Loading branch information
Matheus Moreno committed Dec 22, 2021
1 parent 4362786 commit 32aeb41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlflow/tracking/fluent.py
Expand Up @@ -285,9 +285,9 @@ def start_run(
if run_name is not None:
user_specified_tags[MLFLOW_RUN_NAME] = run_name

run_tags = context_registry.resolve_tags(user_specified_tags)
resolved_tags = context_registry.resolve_tags(user_specified_tags)

active_run_obj = client.create_run(experiment_id=exp_id_for_run, tags=run_tags)
active_run_obj = client.create_run(experiment_id=exp_id_for_run, tags=resolved_tags)

_active_run_stack.append(ActiveRun(active_run_obj))
return _active_run_stack[-1]
Expand Down

0 comments on commit 32aeb41

Please sign in to comment.