[Tizen] Disable Microsoft symbol server by default (#17)
authorSangwook Kim <swift.kim@samsung.com>
Mon, 10 Feb 2020 04:49:40 +0000 (13:49 +0900)
committerMikhail Kurinnoi <m.kurinnoi@samsung.com>
Thu, 29 Sep 2022 09:40:48 +0000 (12:40 +0300)
src/Tools/dotnet-dump/Analyzer.cs

index 7532b870dffdcebea9d71cd38fd03c16ad5a8c4a..9a89850e48932229fe711be9467cb0677a2182a2 100644 (file)
@@ -97,8 +97,8 @@ namespace Microsoft.Diagnostics.Tools.Dump
 
                 _target.ServiceProvider.AddServiceFactory<SOSHost>(() => new SOSHost(_contextService.Services));
 
-                // Automatically enable symbol server support, default cache and search for symbols in the dump directory
-                _symbolService.AddSymbolServer(msdl: true, symweb: false, retryCount: 3);
+                // Automatically enable symbol server support
+                _symbolService.AddSymbolServer(msdl: false, symweb: false, retryCount: 3);
                 _symbolService.AddCachePath(_symbolService.DefaultSymbolCache);
                 _symbolService.AddDirectoryPath(Path.GetDirectoryName(dump_path.FullName));