newrelic_rpm 2.12.2 → 2.12.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of newrelic_rpm might be problematic. Click here for more details.

data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ v2.12.3
2
+ * fix regression in startup sequence
3
+
1
4
  v2.12.2
2
5
  * fix for regression in Rails 2.1 inline rendering
3
6
  * workaround bug found in some rubies that caused a segv and/or NoMemoryError
@@ -224,15 +224,13 @@ module NewRelic
224
224
 
225
225
  # Our shutdown handler needs to run after other shutdown handlers
226
226
  # that may be doing things like running the app (hello sinatra).
227
- if control.send_data_on_exit
228
- if RUBY_VERSION =~ /rubinius/i
229
- list = at_exit { shutdown }
230
- # move the shutdown handler to the front of the list, to
231
- # execute last:
232
- list.unshift(list.pop)
233
- elsif !defined?(JRuby) or !defined?(Sinatra::Application)
234
- at_exit { at_exit { shutdown } }
235
- end
227
+ if RUBY_VERSION =~ /rubinius/i
228
+ list = at_exit { shutdown }
229
+ # move the shutdown handler to the front of the list, to
230
+ # execute last:
231
+ list.unshift(list.pop)
232
+ elsif !defined?(JRuby) or !defined?(Sinatra::Application)
233
+ at_exit { at_exit { shutdown } }
236
234
  end
237
235
  end
238
236
  control.log! "New Relic RPM Agent #{NewRelic::VERSION::STRING} Initialized: pid = #$$"
@@ -3,7 +3,7 @@ module NewRelic
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 2
5
5
  MINOR = 12
6
- TINY = 2
6
+ TINY = 3
7
7
  BUILD = nil #'0' # Set to nil for a release, 'beta1', 'alpha', etc for prerelease builds
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
9
9
  end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{newrelic_rpm}
8
- s.version = "2.12.2"
8
+ s.version = "2.12.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Bill Kayser"]
12
- s.date = %q{2010-06-08}
12
+ s.date = %q{2010-06-10}
13
13
  s.description = %q{New Relic RPM is a Ruby performance management system, developed by
14
14
  New Relic, Inc (http://www.newrelic.com). RPM provides you with deep
15
15
  information about the performance of your Ruby on Rails or Merb
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 2
7
7
  - 12
8
- - 2
9
- version: 2.12.2
8
+ - 3
9
+ version: 2.12.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - Bill Kayser
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-06-08 00:00:00 -07:00
17
+ date: 2010-06-10 00:00:00 -07:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency