Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/NR-343240' into NR-343240
Browse files Browse the repository at this point in the history
# Conflicts:
#	pkg/agentapplications/agentapplications_test.go
#	pkg/applicationSettings/applicationSettings_integration_test.go
  • Loading branch information
vinay-newrelic committed Feb 17, 2025
2 parents 6a62204 + c159286 commit 2ec7b79
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/agentapplications/agentapplications_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ var (
},
TransactionTracer: &AgentApplicationSettingsTransactionTracerInput{
Enabled: func(b bool) *bool { return &b }(false),
TransactionThresholdValue: func(b float64) *float64 { return &b }(0),
TransactionThresholdValue: func(f float64) *float64 { return &f }(0),
TransactionThresholdType: "",
RecordSql: "",
LogSql: func(b bool) *bool { return &b }(false),
StackTraceThreshold: func(b float64) *float64 { return &b }(0),
StackTraceThreshold: func(f float64) *float64 { return &f }(0),
ExplainEnabled: func(b bool) *bool { return &b }(false),
ExplainThresholdValue: func(b float64) *float64 { return &b }(0),
ExplainThresholdValue: func(f float64) *float64 { return &f }(0),
ExplainThresholdType: "",
},
TracerType: &AgentApplicationSettingsTracerTypeInput{"NONE"},
Expand Down

0 comments on commit 2ec7b79

Please sign in to comment.