We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e2b02e commit 06b2d62Copy full SHA for 06b2d62
ruby/lib/ci/queue/redis/supervisor.rb
@@ -39,7 +39,9 @@ def wait_for_workers
39
yield if block_given?
40
end
41
42
- puts "Aborting, it seems all workers died." if time_left_with_no_workers <= 0
+ puts "Aborting, timed out." if time_left <= 0 && !exhausted?
43
+ puts "Aborting, it seems all workers died." if time_left_with_no_workers <= 0 && !exhausted?
44
+
45
exhausted?
46
rescue CI::Queue::Redis::LostMaster
47
false
0 commit comments