Skip to content
Snippets Groups Projects
Commit 6ced66f3 authored by Danny Auble's avatar Danny Auble
Browse files

CRAY - Fix issue with NHC if job doesn't have any nodes in it.

parent fa1d7837
No related branches found
No related tags found
No related merge requests found
...@@ -167,6 +167,11 @@ static int _run_nhc(uint64_t id, char *nodelist, bool step) ...@@ -167,6 +167,11 @@ static int _run_nhc(uint64_t id, char *nodelist, bool step)
info("Calling NHC for id %"PRIu64" on nodes %s(%s)", info("Calling NHC for id %"PRIu64" on nodes %s(%s)",
id, nodelist, argv[3]); id, nodelist, argv[3]);
if (!nodelist || !argv[3]) {
/* already done */
goto fini;
}
if ((cpid = fork()) < 0) { if ((cpid = fork()) < 0) {
error("_run_nhc fork error: %m"); error("_run_nhc fork error: %m");
goto fini; goto fini;
......
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