summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Hinderliter <tim@opscode.com>2010-11-08 10:14:22 -0800
committerTim Hinderliter <tim@opscode.com>2010-11-08 10:14:46 -0800
commitb7f17399393b06bf588cf4aa05db7ccf2fde0be2 (patch)
tree20b3e97d089464dddc2d36263b17c707a09c0fc8
parentd0424f4f6f53187f8c54b455e01d1f85f7defce0 (diff)
downloadchef-b7f17399393b06bf588cf4aa05db7ccf2fde0be2.tar.gz
fix CHEF-1851
-rw-r--r--features/support/env.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/support/env.rb b/features/support/env.rb
index e26b81cb86..3e6edc4b7a 100644
--- a/features/support/env.rb
+++ b/features/support/env.rb
@@ -105,10 +105,10 @@ def create_databases
end
if num_tries <= max_tries
- Chef::Log.debug("In creating #{target_db} try #{num_tries}/#{max_tries}, got #{e}; try again")
+ Chef::Log.debug("In creating chef_integration try #{num_tries}/#{max_tries}, got #{e}; try again")
sleep 0.25
else
- Chef::Log.error("In creating #{target_db}, tried #{max_tries} times: got #{e}; giving up")
+ Chef::Log.error("In creating chef_integration, tried #{max_tries} times: got #{e}; giving up")
end
end
num_tries += 1