1
1

Merge pull request #1080 from federeghe/bugfixes

oob_tcp: fix peer->state wrong check
Этот коммит содержится в:
rhc54 2015-10-31 16:09:23 -07:00
родитель 7a25214911 6536a6a9f5
Коммит 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",