1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

updating wait_for timeout message per conversation with @geemus

This commit is contained in:
Kyle Rames 2012-12-12 15:35:41 -06:00
parent 3d306b6650
commit 14db73efe9

View file

@ -7,7 +7,7 @@ module Fog
duration = Time.now - start
end
if duration > timeout
raise Errors::TimeoutError.new("The specified timeout (#{timeout} seconds) was exceeded")
raise Errors::TimeoutError.new("The specified wait_for timeout (#{timeout} seconds) was exceeded")
else
{ :duration => duration }
end