lib/right_chimp/exec/ExecArray.rb in right_chimp-1.1.0 vs lib/right_chimp/exec/ExecArray.rb in right_chimp-1.1.1
- old
+ new
@@ -6,14 +6,19 @@
def run
run_with_retry do
audit_entry = []
options = @inputs
+ if @timeout < 300
+ Log.error "timeout was less than 5 minutes! resetting to 5 minutes"
+ @timeout = 300
+ end
+
audit_entry = @array.run_script_on_instances(@exec, @server['href'], options)
if audit_entry
audit_entry.each do |a|
- a.wait_for_completed
+ a.wait_for_completed("no audit link available",@timeout)
end
else
Log.warn "No audit entries returned for job_id=#{@job_id}"
end
end