Skip to content

Commit 4c56a77

Browse files
committed
Fix Slurm process name
Ensure that we truncate the local jobid to 15-bits Signed-off-by: Ralph Castain <[email protected]>
1 parent 820d9ac commit 4c56a77

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

opal/mca/pmix/base/pmix_base_fns.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ int opal_pmix_convert_nspace(opal_jobid_t *jobid, pmix_nspace_t nspace)
145145
}
146146
/* if we get here, we don't know this nspace */
147147
OPAL_HASH_STR(nspace, jid);
148+
jid &= ~(0x8000);
148149
*jobid = jid;
149150
nptr = OBJ_NEW(opal_nptr_t);
150151
nptr->jobid = jid;

0 commit comments

Comments
 (0)