diff options
author | John Keiser <jkeiser@opscode.com> | 2013-06-07 08:54:02 -0700 |
---|---|---|
committer | John Keiser <jkeiser@opscode.com> | 2013-06-07 13:12:37 -0700 |
commit | 378a590876d82695655f7239cd74bbc3b026aa02 (patch) | |
tree | c86f3cafab49ee0523d25c5dc8fc3f8f133b5e9f /spec/integration/knife | |
parent | a9ac9d5406f963917618980f453d7b92f12e57ac (diff) | |
download | chef-378a590876d82695655f7239cd74bbc3b026aa02.tar.gz |
Make redirection test silent
Diffstat (limited to 'spec/integration/knife')
-rw-r--r-- | spec/integration/knife/redirection_spec.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/integration/knife/redirection_spec.rb b/spec/integration/knife/redirection_spec.rb index 1d7a71eaaa..72ba3c2b3f 100644 --- a/spec/integration/knife/redirection_spec.rb +++ b/spec/integration/knife/redirection_spec.rb @@ -16,6 +16,7 @@ describe 'redirection' do app = lambda do |env| [302, {'Content-Type' => 'text','Location' => "#{@real_chef_server_url}#{env['PATH_INFO']}" }, ['302 found'] ] end + Thin::Logging.silent = true @redirector_server = Thin::Server.new('127.0.0.1', 9018, app, { :signals => false }) @redirector_thread = Thread.new do begin |