Skip to content

Commit

Permalink
fix pr comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dudikeleti committed Dec 19, 2024
1 parent 0abb540 commit 8ad6dd9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tracer/src/Datadog.Trace/Debugger/DebuggerSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,8 @@ public DebuggerSettings(IConfigurationSource? source, IConfigurationTelemetry te
.AsInt32(DefaultCodeOriginExitSpanFrames, frames => frames > 0)
.Value;

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

public bool Enabled { get; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private SymbolUploadApi(
{
_apiRequestFactory = apiRequestFactory;
_eventMetadata = eventMetadata;
_enableCompression = false;
_enableCompression = enableCompression;
discoveryService.SubscribeToChanges(c => Endpoint = c.SymbolDbEndpoint);
}

Expand Down

0 comments on commit 8ad6dd9

Please sign in to comment.