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

expand an error message for greater clarity

parent 7001e235
No related branches found
No related tags found
No related merge requests found
...@@ -1545,8 +1545,10 @@ _kill_old_slurmd(void) ...@@ -1545,8 +1545,10 @@ _kill_old_slurmd(void)
/* /*
* Wait for previous daemon to terminate * Wait for previous daemon to terminate
*/ */
if (fd_get_readw_lock(fd) < 0) if (fd_get_readw_lock(fd) < 0) {
fatal ("unable to wait for readw lock: %m"); fatal ("error getting readw lock on file %s: %m",
conf->pidfile);
}
(void) close(fd); /* Ignore errors */ (void) close(fd); /* Ignore errors */
} }
} }
......
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