Disable automatic connection recovery for Bunny tutorials

It's not needed and will help investigate obscure exceptions
in CI environment.
This commit is contained in:
Michael Klishin 2013-07-25 09:57:39 +04:00
parent 6286d5b11c
commit 2316088e96
12 changed files with 12 additions and 12 deletions

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -7,7 +7,7 @@ if ARGV.empty?
abort "Usage: #{$0} [info] [warning] [error]"
end
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -7,7 +7,7 @@ if ARGV.empty?
abort "Usage: #{$0} [binding key]"
end
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel

View File

@ -3,7 +3,7 @@
require "bunny"
conn = Bunny.new
conn = Bunny.new(:automatically_recover => false)
conn.start
ch = conn.create_channel