13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# File 'lib/deep_test/distributed/dispatch_controller.rb', line 13
def dispatch_with_options(method_name, options, *args)
raise NoDispatchReceiversError if @receivers.empty?
@options.ui_instance.dispatch_starting(method_name)
threads = @receivers.map do |r|
Thread.new do
Thread.current[:receiver] = r
Timeout.timeout(@options.timeout_in_seconds) do
r.send method_name, *args
end
end
end
results = []
threads.each do |t|
begin
results << t.value
rescue Timeout::Error
@receivers.delete t[:receiver]
DeepTest.logger.error "Timeout dispatching #{method_name} to #{t[:receiver].__drburi}"
rescue DRb::DRbConnError
@receivers.delete t[:receiver]
unless options[:ignore_connection_error]
DeepTest.logger.error "Connection Refused dispatching #{method_name} to #{t[:receiver].__drburi}"
end
rescue Exception => e
@receivers.delete t[:receiver]
DeepTest.logger.error "Exception while dispatching #{method_name} to #{t[:receiver].__drburi} #{e.message}"
end
end
results
ensure
@options.ui_instance.dispatch_finished(method_name)
end
|