From 782b027d96f44a661b55de10b7ed38657fb0a34e Mon Sep 17 00:00:00 2001 From: Oren Novotny Date: Wed, 1 May 2019 14:47:06 -0400 Subject: [PATCH] Don't set developerMode by default so that the DeveloperModeWithDebuggerAttachedTelemetryModule can work correctly --- .../PersistenceChannel/PersistenceChannel.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/AppInsights.WindowsDesktop/PersistenceChannel/PersistenceChannel.cs b/AppInsights.WindowsDesktop/PersistenceChannel/PersistenceChannel.cs index d052458..e0a6157 100644 --- a/AppInsights.WindowsDesktop/PersistenceChannel/PersistenceChannel.cs +++ b/AppInsights.WindowsDesktop/PersistenceChannel/PersistenceChannel.cs @@ -56,8 +56,7 @@ public PersistenceChannel(string storageFolderName, int sendersCount = 3) this.storage = new Storage(storageFolderName); this.Transmitter = new PersistenceTransmitter(this.storage, sendersCount); this.flushManager = new FlushManager(this.storage, this.TelemetryBuffer); - this.EndpointAddress = Constants.TelemetryServiceEndpoint; - this.developerMode = false; + this.EndpointAddress = Constants.TelemetryServiceEndpoint; } ///