Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ruby/lib/ci/queue/redis/supervisor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ def wait_for_workers
yield if block_given?
end

puts "Aborting, it seems all workers died." if time_left_with_no_workers <= 0
puts "Aborting, timed out." if time_left <= 0 && !exhausted?
puts "Aborting, it seems all workers died." if time_left_with_no_workers <= 0 && !exhausted?
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


exhausted?
rescue CI::Queue::Redis::LostMaster
false
Expand Down
Loading