Skip to content
Snippets Groups Projects
Commit 323871a1 authored by Moe Jette's avatar Moe Jette
Browse files

Fix for changed RPC

parent 4b5896c1
No related branches found
No related tags found
No related merge requests found
......@@ -1001,12 +1001,6 @@ slurm_step_launch(slurm_step_ctx ctx = NULL, HV* hv = NULL, SV* start_cb = NULL,
if(hv_to_slurm_step_launch_params(hv, &params) < 0) {
RETVAL = SLURM_ERROR;
} else {
char *dot_ptr, launcher_host[1024];
gethostname(launcher_host, sizeof(launcher_host));
dot_ptr = strchr(launcher_host, '.');
if (dot_ptr)
dot_ptr[0] = '\0';
params.launcher_host = launcher_host;
RETVAL = slurm_step_launch(ctx, &params, &callbacks);
}
OUTPUT:
......
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