1
1

oob_tcp: fix peer->state wrong check

Этот коммит содержится в:
Federico Reghenzani 2015-10-29 16:43:58 +01:00
родитель 8ad9b450c4
Коммит 6536a6a9f5

Просмотреть файл

@ -361,7 +361,7 @@ static void process_ping(int fd, short args, void *cbdata)
}
/* if we are already connecting, there is nothing to do */
if (MCA_OOB_TCP_CONNECTING == peer->state &&
if (MCA_OOB_TCP_CONNECTING == peer->state ||
MCA_OOB_TCP_CONNECT_ACK == peer->state) {
opal_output_verbose(2, orte_oob_base_framework.framework_output,
"%s:[%s:%d] already connecting to peer %s",