Skip to content

Commit a25c696

Browse files
committed
fix build
1 parent 5e8d657 commit a25c696

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,11 @@ public DebuggerSettings(IConfigurationSource? source, IConfigurationTelemetry te
137137
.WithKeys(ConfigurationKeys.Debugger.CodeOriginMaxUserFrames)
138138
.AsInt32(DefaultCodeOriginExitSpanFrames, frames => frames > 0)
139139
.Value;
140-
141-
SymbolDatabaseCompressionEnabled = config.WithKeys(ConfigurationKeys.Debugger.SymbolDatabaseCompressionEnabled).AsBool(true);
142140

143-
IsSnapshotExplorationTestEnabled = config.WithKeys(ConfigurationKeys.Debugger.IsSnapshotExplorationTestEnabled).AsBool(false);
141+
SymbolDatabaseCompressionEnabled = config.WithKeys(ConfigurationKeys.Debugger.SymbolDatabaseCompressionEnabled).AsBool(true);
144142

143+
IsSnapshotExplorationTestEnabled = config.WithKeys(ConfigurationKeys.Debugger.IsSnapshotExplorationTestEnabled).AsBool(false);
145144
SnapshotExplorationTestProbesPath = config.WithKeys(ConfigurationKeys.Debugger.SnapshotExplorationTestProbesPath).AsString(string.Empty);
146-
147145
SnapshotExplorationTestReportPath = config.WithKeys(ConfigurationKeys.Debugger.SnapshotExplorationTestReportPath).AsString(string.Empty);
148146
}
149147

0 commit comments

Comments
 (0)