# File lib/deep_test/process_orchestrator.rb, line 34
34:     def shutdown(server)
35:       DeepTest.logger.debug "ProcessOrchestrator: Shutting Down"
36:       server.done_with_work
37: 
38:       first_exception = $!
39:       begin
40:         DeepTest.logger.debug "ProcessOrchestrator: Stopping Workers"
41:         @workers.stop_all
42:       rescue DRb::DRbConnError
43:         # Workers must have already stopped
44:       rescue Exception => e
45:         raise first_exception || e
46:       end
47:     end