Skip to content

Commit

Permalink
bugfix for missing transaction trace config
Browse files Browse the repository at this point in the history
  • Loading branch information
JimGochee committed Jul 11, 2008
1 parent ea647bd commit e876b58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/newrelic/agent/agent.rb
Expand Up @@ -165,7 +165,7 @@ def start_reporting(force_enable=false)
sampler_config = config.fetch('transaction_tracer', {})

@use_transaction_sampler = sampler_config.fetch('enabled', false)
@record_sql = sampler_config.fetch('record_sql', :obfuscated).intern
@record_sql = (sampler_config.fetch('record_sql') || 'obfuscated').intern
@slowest_transaction_threshold = sampler_config.fetch('transaction_threshold', '2.0').to_f
@explain_threshold = sampler_config.fetch('explain_threshold', '0.5').to_f
@explain_enabled = sampler_config.fetch('explain_enabled', true)
Expand Down
2 changes: 2 additions & 0 deletions version.txt
@@ -1,3 +1,5 @@
2008-07-11 version 2.3.4
* bugfix for absent transaction trace config
2008-07-10 version 2.3.3
* bugfix for non-mysql databases
2008-07-07 version 2.3.2
Expand Down

0 comments on commit e876b58

Please sign in to comment.