From 752978bda503a064debdc282b434e1b8a725f6a1 Mon Sep 17 00:00:00 2001 From: ghoffa Date: Fri, 31 Oct 2025 13:54:46 +0000 Subject: [PATCH] Update 1-ingest-data.ipynb Updated the broken remote_url parameter. remote_url had become stale and was no longer accessible. The script as is writes an error message to the csv file. Updated to a new URL based on the following Fabric Community post: https://community.fabric.microsoft.com/t5/Fabric-platform/Fabric-Data-Science-Tutorial-Sample-Data-not-accessible/m-p/4733793 --- .../data-science/data-science-tutorial/1-ingest-data.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-samples/data-science/data-science-tutorial/1-ingest-data.ipynb b/docs-samples/data-science/data-science-tutorial/1-ingest-data.ipynb index 4725eb45..f1c28362 100644 --- a/docs-samples/data-science/data-science-tutorial/1-ingest-data.ipynb +++ b/docs-samples/data-science/data-science-tutorial/1-ingest-data.ipynb @@ -163,7 +163,7 @@ "# Using synapse blob, this can be done in one line\n", "\n", "# Download demo data files into lakehouse if not exist\n", - " remote_url = \"https://synapseaisolutionsa.blob.core.windows.net/public/bankcustomerchurn\"\n", + " remote_url = \"https://synapseaisolutionsa.z13.web.core.windows.net/data/bankcustomerchurn\"\n", " file_list = [DATA_FILE]\n", " download_path = f\"{DATA_ROOT}/{DATA_FOLDER}/raw\"\n", "\n",