Skip to content
Snippets Groups Projects
Commit 76dddcdd authored by Nate Rini's avatar Nate Rini Committed by Tim Wickberg
Browse files

Disable sending uid/gid as it is handled by auth layer

Bug 8787.
parent a70533c6
No related branches found
No related tags found
No related merge requests found
......@@ -374,8 +374,9 @@ static int _fill_job_desc_from_sbatch_opts(slurm_opt_t *opt,
desc->min_nodes = 0;
if (opt->ntasks_per_node)
desc->ntasks_per_node = opt->ntasks_per_node;
desc->user_id = opt->uid;
desc->group_id = opt->gid;
/* Disable sending uid/gid as it is handled by auth layer */
/* desc->user_id = opt->uid; */
/* desc->group_id = opt->gid; */
if (opt->dependency)
desc->dependency = xstrdup(opt->dependency);
......
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