[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)
committerolekarev <o.lekarev@samsung.com>
Fri, 11 Feb 2022 15:07:27 +0000 (18:07 +0300)
src/Tools/dotnet-dump/Analyzer.cs

index c088ed697dc6ec9695a6ec5002cd51da9ac80327..38bd8ae3ba09a5a805ba1272ea6b2dabd7db5ab6 100644 (file)
@@ -102,8 +102,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, symbolServerPath: null, authToken: null, timeoutInMinutes: 0);
+                // Automatically enable symbol server support
+                _symbolService.AddSymbolServer(msdl: false, symweb: false, symbolServerPath: null, authToken: null, timeoutInMinutes: 0);
                 _symbolService.AddCachePath(_symbolService.DefaultSymbolCache);
                 _symbolService.AddDirectoryPath(Path.GetDirectoryName(dump_path.FullName));