Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.nifi.remote.client.http;

import java.io.IOException;
import java.net.NoRouteToHostException;
import java.net.URI;
import java.util.Collection;
import java.util.Collections;
Expand Down Expand Up @@ -187,7 +188,8 @@ public Transaction createTransaction(final TransferDirection direction) throws I
// Following exceptions will be thrown even if we tried other peers, so throw it.
if (e instanceof UnknownPortException
|| e instanceof PortNotRunningException
|| e instanceof HandshakeException) {
|| e instanceof HandshakeException
|| e instanceof NoRouteToHostException) {
throw e;
}

Expand Down