Skip to content

Commit 139cfcb

Browse files
committed
fix pr comment
1 parent 4eee183 commit 139cfcb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tracer/src/Datadog.Trace/Debugger/DebuggerSettings.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ public DebuggerSettings(IConfigurationSource? source, IConfigurationTelemetry te
124124
.AsInt32(DefaultCodeOriginExitSpanFrames, frames => frames > 0)
125125
.Value;
126126

127-
SymbolDatabaseCompressionEnabled = config.WithKeys(ConfigurationKeys.Debugger.SymbolDatabaseCompressionEnabled).AsBool(false);
127+
// Force it to false to disable SymDB compression, will be re-enabled in the next PR
128+
SymbolDatabaseCompressionEnabled = false;
128129
}
129130

130131
public bool Enabled { get; }

tracer/src/Datadog.Trace/Debugger/Upload/SymbolUploadApi.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private SymbolUploadApi(
3838
{
3939
_apiRequestFactory = apiRequestFactory;
4040
_eventMetadata = eventMetadata;
41-
_enableCompression = false;
41+
_enableCompression = enableCompression;
4242
discoveryService.SubscribeToChanges(c => Endpoint = c.SymbolDbEndpoint);
4343
}
4444

0 commit comments

Comments
 (0)