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
3 changes: 2 additions & 1 deletion lib/rtoolsHCK.rb
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,9 @@ def handle_action_exceptions(action, &block)
yield
# We can have ECONNREFUSED error due to direct connection to
# clients instead of proxy through studio
# We can have EHOSTUNREACH error due to network issues or machine rebooting
# Safety catch this exception, the action wrapper will retry if needed
rescue RToolsHCKError, Errno::ECONNREFUSED => e
rescue RToolsHCKError, Errno::ECONNREFUSED, Errno::EHOSTUNREACH => e
Comment on lines 415 to +419
action_exception_handler(e)
end
end
Expand Down
Loading