bunny 0.9.4 → 0.9.5

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.
@@ -7,10 +7,10 @@ rvm:
7
7
  - "rbx-19mode"
8
8
  - "jruby-19mode"
9
9
  - "1.9.2"
10
- notifications:
11
- email: michael@rabbitmq.com
12
10
  services:
13
11
  - rabbitmq
12
+ notifications:
13
+ email: michael@rabbitmq.com
14
14
  branches:
15
15
  only:
16
16
  - master
@@ -1,6 +1,13 @@
1
1
  ## Changes between Bunny 0.9.4 and 0.9.5
2
2
 
3
- No changes.
3
+ ### connection.close Raises Exceptions on Connection Thread
4
+
5
+ Connection-level exceptions (including when a connection is closed via
6
+ management UI or `rabbitmqctl`) will now be raised on the connection
7
+ thread so they
8
+
9
+ * can be handled by applications
10
+ * do not start connection recovery, which may be uncalled for
4
11
 
5
12
 
6
13
  ## Changes between Bunny 0.9.3 and 0.9.4
@@ -370,13 +370,15 @@ module Bunny
370
370
 
371
371
  # @private
372
372
  def close_connection(sync = true)
373
- @transport.send_frame(AMQ::Protocol::Connection::Close.encode(200, "Goodbye", 0, 0))
373
+ if @transport.open?
374
+ @transport.send_frame(AMQ::Protocol::Connection::Close.encode(200, "Goodbye", 0, 0))
374
375
 
375
- maybe_shutdown_heartbeat_sender
376
- @status = :not_connected
376
+ maybe_shutdown_heartbeat_sender
377
+ @status = :not_connected
377
378
 
378
- if sync
379
- @last_connection_close_ok = wait_on_continuations
379
+ if sync
380
+ @last_connection_close_ok = wait_on_continuations
381
+ end
380
382
  end
381
383
  end
382
384
 
@@ -392,7 +394,7 @@ module Bunny
392
394
  @last_connection_error = instantiate_connection_level_exception(method)
393
395
  @continuations.push(method)
394
396
 
395
- raise @last_connection_error
397
+ @origin_thread.raise(@last_connection_error)
396
398
  when AMQ::Protocol::Connection::CloseOk then
397
399
  @last_connection_close_ok = method
398
400
  begin
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Bunny
4
4
  # @return [String] Version of the library
5
- VERSION = "0.9.4"
5
+ VERSION = "0.9.5"
6
6
  end
@@ -0,0 +1,12 @@
1
+ require "spec_helper"
2
+
3
+ describe Bunny::Session do
4
+ it "can be closed" do
5
+ c = Bunny.new
6
+ c.start
7
+ ch = c.create_channel
8
+
9
+ c.should be_connected
10
+ c.stop
11
+ end
12
+ end
metadata CHANGED
@@ -1,7 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bunny
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.4
4
+ version: 0.9.5
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Chris Duncan
@@ -17,24 +18,31 @@ dependencies:
17
18
  - !ruby/object:Gem::Dependency
18
19
  name: amq-protocol
19
20
  requirement: !ruby/object:Gem::Requirement
21
+ none: false
20
22
  requirements:
21
- - - '>='
23
+ - - ! '>='
22
24
  - !ruby/object:Gem::Version
23
25
  version: 1.6.0
24
26
  type: :runtime
25
27
  prerelease: false
26
28
  version_requirements: !ruby/object:Gem::Requirement
29
+ none: false
27
30
  requirements:
28
- - - '>='
31
+ - - ! '>='
29
32
  - !ruby/object:Gem::Version
30
33
  version: 1.6.0
31
34
  description: Easy to use, feature complete Ruby client for RabbitMQ 2.0.
32
35
  email:
33
- - celldee@gmail.com
34
- - eric@5stops.com
35
- - stastny@101ideas.cz
36
- - michael@novemberain.com
37
- - skaes@railsexpress.de
36
+ - !binary |-
37
+ Y2VsbGRlZUBnbWFpbC5jb20=
38
+ - !binary |-
39
+ ZXJpY0A1c3RvcHMuY29t
40
+ - !binary |-
41
+ c3Rhc3RueUAxMDFpZGVhcy5jeg==
42
+ - !binary |-
43
+ bWljaGFlbEBub3ZlbWJlcmFpbi5jb20=
44
+ - !binary |-
45
+ c2thZXNAcmFpbHNleHByZXNzLmRl
38
46
  executables: []
39
47
  extensions: []
40
48
  extra_rdoc_files:
@@ -137,6 +145,7 @@ files:
137
145
  - spec/higher_level_api/integration/channel_open_spec.rb
138
146
  - spec/higher_level_api/integration/confirm_select_spec.rb
139
147
  - spec/higher_level_api/integration/connection_spec.rb
148
+ - spec/higher_level_api/integration/connection_stop_spec.rb
140
149
  - spec/higher_level_api/integration/consistent_hash_exchange_spec.rb
141
150
  - spec/higher_level_api/integration/consumer_cancellation_notification_spec.rb
142
151
  - spec/higher_level_api/integration/dead_lettering_spec.rb
@@ -184,26 +193,27 @@ files:
184
193
  homepage: http://rubybunny.info
185
194
  licenses:
186
195
  - MIT
187
- metadata: {}
188
196
  post_install_message:
189
197
  rdoc_options: []
190
198
  require_paths:
191
199
  - lib
192
200
  required_ruby_version: !ruby/object:Gem::Requirement
201
+ none: false
193
202
  requirements:
194
- - - '>='
203
+ - - ! '>='
195
204
  - !ruby/object:Gem::Version
196
205
  version: '0'
197
206
  required_rubygems_version: !ruby/object:Gem::Requirement
207
+ none: false
198
208
  requirements:
199
- - - '>='
209
+ - - ! '>='
200
210
  - !ruby/object:Gem::Version
201
211
  version: '0'
202
212
  requirements: []
203
213
  rubyforge_project:
204
- rubygems_version: 2.0.5
214
+ rubygems_version: 1.8.25
205
215
  signing_key:
206
- specification_version: 4
216
+ specification_version: 3
207
217
  summary: Popular easy to use Ruby client for RabbitMQ
208
218
  test_files:
209
219
  - spec/compatibility/queue_declare_spec.rb
@@ -223,6 +233,7 @@ test_files:
223
233
  - spec/higher_level_api/integration/channel_open_spec.rb
224
234
  - spec/higher_level_api/integration/confirm_select_spec.rb
225
235
  - spec/higher_level_api/integration/connection_spec.rb
236
+ - spec/higher_level_api/integration/connection_stop_spec.rb
226
237
  - spec/higher_level_api/integration/consistent_hash_exchange_spec.rb
227
238
  - spec/higher_level_api/integration/consumer_cancellation_notification_spec.rb
228
239
  - spec/higher_level_api/integration/dead_lettering_spec.rb
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 6bf2e653c0def6db325c55467b9aadc29cd1a95c
4
- data.tar.gz: e842ff44b84872269ff66ab83d1cf9f46fab5708
5
- SHA512:
6
- metadata.gz: c526be96cb7740a54e13657302c3628abf86f8165f722ad44b55cf3d3a94b0bbeddaf603143ed7f572c3c595871104bcdecad916f318cc28951aec392db5de35
7
- data.tar.gz: 7d60dbc8c64568343d913d4c03f8f142ef0ed8b4daea45197ecf73a4c8192af61bb19bf9afd9700ac3aea587b8740c73ea6f95b58add6bbcb1dfa7f5637e9d0b