Skip to content

Commit 5d32282

Browse files
committed
orted/pmix_server_pub: fix packing type in pmix_server_lookup_fn()
and make it match the one used when unpacking in orte_data_server()
1 parent dac9201 commit 5d32282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

orte/orted/pmix/pmix_server_pub.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ int pmix_server_lookup_fn(opal_process_name_t *proc, char **keys,
227227
}
228228

229229
/* pack the range */
230-
if (OPAL_SUCCESS != (rc = opal_dss.pack(&req->msg, &range, 1, OPAL_INT))) {
230+
if (OPAL_SUCCESS != (rc = opal_dss.pack(&req->msg, &range, 1, OPAL_PMIX_DATA_RANGE))) {
231231
ORTE_ERROR_LOG(rc);
232232
OBJ_RELEASE(req);
233233
return rc;

0 commit comments

Comments
 (0)