Merge pull request #1080 from federeghe/bugfixes
oob_tcp: fix peer->state wrong check
Этот коммит содержится в:
Коммит
b23f1f3578
@ -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",
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user