3737
3838#include "orte/mca/errmgr/errmgr.h"
3939#include "orte/util/name_fns.h"
40+ #include "orte/util/show_help.h"
4041#include "orte/runtime/orte_globals.h"
4142#include "orte/mca/grpcomm/grpcomm.h"
4243#include "orte/mca/rml/rml.h"
@@ -164,7 +165,7 @@ static void dmodex_req(int sd, short args, void *cbdata)
164165 /* save the request in the hotel until the
165166 * data is returned */
166167 if (OPAL_SUCCESS != (rc = opal_hotel_checkin (& orte_pmix_server_globals .reqs , req , & req -> room_num ))) {
167- ORTE_ERROR_LOG ( rc );
168+ orte_show_help ( "help-orted.txt" , "noroom" , true, req -> operation , orte_pmix_server_globals . num_rooms );
168169 /* can't just return as that would cause the requestor
169170 * to hang, so instead execute the callback */
170171 goto callback ;
@@ -180,7 +181,7 @@ static void dmodex_req(int sd, short args, void *cbdata)
180181 * that we don't know about yet. In this case, just
181182 * record the request and we will process it later */
182183 if (OPAL_SUCCESS != (rc = opal_hotel_checkin (& orte_pmix_server_globals .reqs , req , & req -> room_num ))) {
183- ORTE_ERROR_LOG ( rc );
184+ orte_show_help ( "help-orted.txt" , "noroom" , true, req -> operation , orte_pmix_server_globals . num_rooms );
184185 /* can't just return as that would cause the requestor
185186 * to hang, so instead execute the callback */
186187 goto callback ;
@@ -209,7 +210,7 @@ static void dmodex_req(int sd, short args, void *cbdata)
209210 /* track the request so we know the function and cbdata
210211 * to callback upon completion */
211212 if (OPAL_SUCCESS != (rc = opal_hotel_checkin (& orte_pmix_server_globals .reqs , req , & req -> room_num ))) {
212- ORTE_ERROR_LOG ( rc );
213+ orte_show_help ( "help-orted.txt" , "noroom" , true, req -> operation , orte_pmix_server_globals . num_rooms );
213214 goto callback ;
214215 }
215216
0 commit comments