Skip to content
Snippets Groups Projects
Commit 02dc328b authored by Morris Jette's avatar Morris Jette
Browse files

Remove some v15.08 code

The perl API sbcast function included a step ID, which is NOT in v14.11, on v15.08
parent 31401582
No related branches found
No related tags found
No related merge requests found
......@@ -675,7 +675,7 @@ slurm_job_will_run(slurm_t self, HV *job_desc)
RETVAL
HV *
slurm_sbcast_lookup(slurm_t self, uint32_t job_id, uint32_t step_id)
slurm_sbcast_lookup(slurm_t self, uint32_t job_id)
PREINIT:
job_sbcast_cred_msg_t *info;
int rc;
......@@ -685,7 +685,7 @@ slurm_sbcast_lookup(slurm_t self, uint32_t job_id, uint32_t step_id)
out of the mix Slurm-> doesn't work,
only Slurm::
*/
rc = slurm_sbcast_lookup(job_id, step_id, &info);
rc = slurm_sbcast_lookup(job_id, &info);
if (rc == SLURM_SUCCESS) {
RETVAL = newHV();
sv_2mortal((SV*)RETVAL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment