From 365b41d6c3f01666fc8fd79eee4c1f7d07d5e069 Mon Sep 17 00:00:00 2001 From: Med CHIBOUB <12234326+medChiboub@users.noreply.github.com> Date: Mon, 27 Jul 2026 18:41:01 -0400 Subject: [PATCH] Fix syntax for setting MLflow tracking URI The current sample shows: mlflow.set_tracking_uri = "MLFLOW-TRACKING-URI" mlflow.set_tracking_uri is a function, not an attribute meant to be assigned to. This line doesn't call the function, it rebinds the name mlflow.set_tracking_uri to a plain string, silently discarding the function object. --- .../includes/5-model-tracking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learn-pr/wwl-data-ai/experiment-azure-machine-learning/includes/5-model-tracking.md b/learn-pr/wwl-data-ai/experiment-azure-machine-learning/includes/5-model-tracking.md index 1846eafdfc1..992cbc7151b 100644 --- a/learn-pr/wwl-data-ai/experiment-azure-machine-learning/includes/5-model-tracking.md +++ b/learn-pr/wwl-data-ai/experiment-azure-machine-learning/includes/5-model-tracking.md @@ -45,7 +45,7 @@ When you prefer working in notebooks on a local device, you can also make use of 6. Use the following code in your local notebook to configure MLflow to point to the Azure Machine Learning workspace, and set it to the workspace tracking URI. ```python - mlflow.set_tracking_uri = "MLFLOW-TRACKING-URI" + mlflow.set_tracking_uri("MLFLOW-TRACKING-URI") ``` > [!Tip]