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

Fix for sattach protocol version

This was broken by commit 2a5271c1
test16.4 was failing since sattach was not setting a protocol version.
parent b7ae78c5
No related branches found
No related tags found
No related merge requests found
...@@ -707,12 +707,14 @@ _send_exit_msg(stepd_step_rec_t *job, uint32_t *tid, int n, int status) ...@@ -707,12 +707,14 @@ _send_exit_msg(stepd_step_rec_t *job, uint32_t *tid, int n, int status)
i = list_iterator_create(job->sruns); i = list_iterator_create(job->sruns);
while ((srun = list_next(i))) { while ((srun = list_next(i))) {
resp.address = srun->resp_addr; resp.address = srun->resp_addr;
resp.protocol_version = srun->protocol_version;
if ((resp.address.sin_family == 0) && if ((resp.address.sin_family == 0) &&
(resp.address.sin_port == 0) && (resp.address.sin_port == 0) &&
(resp.address.sin_addr.s_addr == 0)) (resp.address.sin_addr.s_addr == 0))
continue; /* no srun or sattach here */ continue; /* no srun or sattach here */
if (srun->protocol_version) /* Not set by sattach */
resp.protocol_version = srun->protocol_version;
if (_send_srun_resp_msg(&resp, job->nnodes) != SLURM_SUCCESS) if (_send_srun_resp_msg(&resp, job->nnodes) != SLURM_SUCCESS)
error("Failed to send MESSAGE_TASK_EXIT: %m"); error("Failed to send MESSAGE_TASK_EXIT: %m");
} }
......
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