Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit e0e2ce5

Browse files
committed
btl/ugni: fix erroneous warning message
This commit prevents the connection code from trying to connect an endpoint if the directed datagram has been posted but not received. Signed-off-by: Nathan Hjelm <[email protected]> (cherry picked from commit open-mpi/ompi@f93c1f2) Signed-off-by: Nathan Hjelm <[email protected]>
1 parent ee86e07 commit e0e2ce5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

opal/mca/btl/ugni/btl_ugni_endpoint.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,11 @@ int mca_btl_ugni_ep_connect_progress (mca_btl_base_endpoint_t *ep) {
206206
ep->dg_posted = true;
207207
rc = OPAL_ERR_RESOURCE_BUSY;
208208
}
209+
209210
return rc;
210211
}
212+
213+
return OPAL_SUCCESS;
211214
}
212215

213216
return mca_btl_ugni_ep_connect_finish (ep);

0 commit comments

Comments
 (0)