Skip to content

Commit 2b67150

Browse files
committed
Update changelog
1 parent baae6e7 commit 2b67150

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste
1212
**CHANGES**
1313
- Ubuntu 20.04 is no longer supported.
1414
- Upgrade Slurm to version 24.11.5.
15+
- Addressed cluster id mismatch known issue by deleting the file `/var/spool/slurm.state/clustername` before configuring Slurm accounting.
1516
- Upgrade DCV to version 2024.0-19030.
1617
- Remove `berkshelf`. All cookbooks are local and do not need `berkshelf` dependency management.
1718

cookbooks/aws-parallelcluster-slurm/recipes/config/config_slurm_accounting.rb

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@
7676
action action
7777
end unless on_docker?
7878

79+
file "/var/spool/slurm.state/clustername" do
80+
action "delete"
81+
end
82+
7983
if node['cluster']['slurmdbd_service_enabled'] == "true"
8084
# After starting slurmdbd the database may not be fully responsive yet and
8185
# its bootstrapping may fail. We need to wait for sacctmgr to successfully
@@ -88,11 +92,6 @@
8892
retry_delay 10
8993
end unless kitchen_test? || (node['cluster']['node_type'] == "ExternalSlurmDbd")
9094

91-
92-
file '/var/spool/slurm.state/clustername' do
93-
action :delete
94-
end
95-
9695
bash "bootstrap slurm database" do
9796
user 'root'
9897
group 'root'

0 commit comments

Comments
 (0)