Skip to content
Snippets Groups Projects
Commit 9f666d5f authored by Moe Jette's avatar Moe Jette
Browse files
parent 82c1264c
No related branches found
No related tags found
No related merge requests found
...@@ -1722,5 +1722,5 @@ documents those changes that are of interest to users and admins. ...@@ -1722,5 +1722,5 @@ documents those changes that are of interest to users and admins.
-- Fixed reattach bug when tasks have exited. -- Fixed reattach bug when tasks have exited.
-- Change directory to /tmp in slurmd if daemonizing. -- Change directory to /tmp in slurmd if daemonizing.
-- Logfiles are reopened on reconfigure. -- Logfiles are reopened on reconfigure.
$Id$ $Id$
...@@ -70,6 +70,7 @@ int main (int argc, char *argv[]) ...@@ -70,6 +70,7 @@ int main (int argc, char *argv[])
job_req.min_nodes = min_nodes; job_req.min_nodes = min_nodes;
job_req.max_nodes = max_nodes; job_req.max_nodes = max_nodes;
job_req.user_id = getuid(); job_req.user_id = getuid();
job_req.group_id = getgid();
if (slurm_allocate_resources(&job_req, &job_resp)) { if (slurm_allocate_resources(&job_req, &job_resp)) {
slurm_perror ("slurm_allocate_resources"); slurm_perror ("slurm_allocate_resources");
exit(0); exit(0);
......
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