Merge pull request #105 from pocman/patch-4

Fix TypeError conversion of Array into String
This commit is contained in:
R. Tyler Croy 2015-05-19 07:52:00 -07:00
commit a833a7e366
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ RSpec.configure do |c|
shared_context 'integration test context', :type => :integration do
let(:topic) { "hermann_testing_" + rand(100_000_000).to_s }
let(:brokers) { $integrationconf['kafka']['brokers'] }
let(:brokers) { $integrationconf['kafka']['brokers'].join(',') }
let(:zookeepers) { $integrationconf['zookeepers'] }
end
end