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

CRAY - Fix to work with 4.0.* instead of just 4.0.0 which is suppose to

be the same.
parent 7e1609c8
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@ documents those changes that are of interest to users and admins.
to avoid thrashing slurmd daemon.
-- Cray - fix to make nodes come back up in accounting if they were
previously marked down by alps.
-- CRAY - Fix to work with 4.0.* instead of just 4.0.0
* Changes in SLURM 2.3.0.rc1
============================
......
......@@ -77,7 +77,7 @@ extern enum basil_version get_basil_version(void)
fatal("can not determine ALPS Engine version");
else if (strncmp(engine_version, "4.1.0", 5) == 0)
bv = BV_4_1;
else if (strncmp(engine_version, "4.0.0", 5) == 0)
else if (strncmp(engine_version, "4.0", 3) == 0)
bv = BV_4_0;
else if (strncmp(engine_version, "3.1.0", 5) == 0)
bv = BV_3_1;
......
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