Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ This file is used to list changes made in each version of the AWS ParallelCluste

**BUG FIXES**
- Remove usage of cfn-init for compute node bootstrapping to reduce node scale up time.

- Fix the execution of overriding aws-parallelcluster-node package only on the head node during update.

3.12.0
------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

# REMINDER: the update recipe runs only on the head node and the only supervisord daemon provided by the
# aws-parallelcluster-node package on the head node is clustermgtd. Therefore, only this daemon is restarted.
return unless node['cluster']['node_type'] == 'HeadNode'

execute 'stop clustermgtd' do
command "#{cookbook_virtualenv_path}/bin/supervisorctl stop clustermgtd"
end
Expand Down
Loading