From 2d1e50ffaa749e8e6211953ddfff9b1fd768d338 Mon Sep 17 00:00:00 2001 From: Jordi Ramos Date: Sun, 15 Dec 2024 12:21:34 -0800 Subject: [PATCH 1/2] Update SymbolSearchUpdateEngine.Update.cs --- .../SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs b/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs index 88e9c33b6b644..bc2cb173e9294 100644 --- a/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs +++ b/src/Features/Core/Portable/SymbolSearch/Windows/SymbolSearchUpdateEngine.Update.cs @@ -233,7 +233,7 @@ private async Task DownloadFullDatabaseAsync(FileInfo databaseFileInfo private async Task<(bool succeeded, TimeSpan delay)> DownloadFullDatabaseWorkerAsync(FileInfo databaseFileInfo, CancellationToken cancellationToken) { - // Will hit https://az700632.vo.msecnd.net/pub/RoslynNuGetSearch/Elfie_V1/Latest.xml. Providing this + // Will hit https://aka.ms/vssettings/pub/RoslynNuGetSearch/Elfie_V1/Latest.xml. Providing this // link in the source to make it easy for maintainers to hit the endpoint to see if it succeeds and that // the data and http headers are what are expected. var serverPath = Invariant($"Elfie_V{AddReferenceDatabaseTextFileFormatVersion}/Latest.xml"); @@ -373,7 +373,7 @@ private async Task PatchLocalDatabaseAsync(FileInfo databaseFileInfo, // Now attempt to download and apply patch file. // - // Will hit https://az700632.vo.msecnd.net/pub/RoslynNuGetSearch/Elfie_V1/{db_version}_Patch.xml. + // Will hit https://aka.ms/vssettings/pub/RoslynNuGetSearch/Elfie_V1/{db_version}_Patch.xml. // Providing this link in the source to make it easy for maintainers to hit the endpoint to see if it // succeeds and that the data and http headers are what are expected. var serverPath = Invariant($"Elfie_V{AddReferenceDatabaseTextFileFormatVersion}/{database.DatabaseVersion}_Patch.xml"); From b2ef1cefa211bd56883f50cb2d57f891bd7e1277 Mon Sep 17 00:00:00 2001 From: Jordi Ramos Date: Sun, 15 Dec 2024 12:34:01 -0800 Subject: [PATCH 2/2] Update FileDownloader.cs --- src/VisualStudio/Core/Def/Storage/FileDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/VisualStudio/Core/Def/Storage/FileDownloader.cs b/src/VisualStudio/Core/Def/Storage/FileDownloader.cs index df617134e9442..5688f09332169 100644 --- a/src/VisualStudio/Core/Def/Storage/FileDownloader.cs +++ b/src/VisualStudio/Core/Def/Storage/FileDownloader.cs @@ -19,7 +19,7 @@ public IFileDownloader CreateClient(string hostId, string serverPath, int pollin { // BaseUrl provided by the VS RemoteControl client team. This is URL we are supposed // to use to publish and access data from. - const string BaseUrl = "https://az700632.vo.msecnd.net/pub"; + const string BaseUrl = "https://aka.ms/vssettings/pub"; return new FileDownloader(new RemoteControlClient(hostId, BaseUrl, serverPath, pollingMinutes)); }