if PROXY variable is set there is no need to do a direct connection attempt
This commit is contained in:
parent
f5d41ff26f
commit
305855eef7
|
@ -11463,7 +11463,7 @@ fd_socket() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
# Now comes the usual case
|
# Now comes the usual case
|
||||||
if ! exec 5<>/dev/tcp/$nodeip/$PORT && [[ -z "$PROXY" ]]; then
|
if [[ -z "$PROXY" ]] && ! exec 5<>/dev/tcp/$nodeip/$PORT; then
|
||||||
((NR_SOCKET_FAIL++))
|
((NR_SOCKET_FAIL++))
|
||||||
connectivity_problem $NR_SOCKET_FAIL $MAX_SOCKET_FAIL "TCP connect problem" "repeated TCP connect problems, giving up"
|
connectivity_problem $NR_SOCKET_FAIL $MAX_SOCKET_FAIL "TCP connect problem" "repeated TCP connect problems, giving up"
|
||||||
outln
|
outln
|
||||||
|
|
Loading…
Reference in New Issue