Skip to content

Commit

Permalink
Fix conf generation on reconfigure
Browse files Browse the repository at this point in the history
By not passing lkp to conflines, it was using the old lkp to generate
cloud.conf.
  • Loading branch information
bsngardner committed Aug 30, 2023
1 parent 1af0a8b commit c748a6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
- Only attempt static node resume when node is powered down.
- Fix CUDA on Ubuntu by installing CUDA via runfile alongside NVIDIA driver from
signed repo.
- Fix conf generation issue on reconfiguration.

## \[6.1.1\]

Expand Down
2 changes: 1 addition & 1 deletion scripts/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def make_cloud_conf(lkp=lkp, cloud_parameters=None):

lines = [
FILE_PREAMBLE,
conflines(cloud_parameters),
conflines(cloud_parameters, lkp),
loginlines(),
*(nodeset_lines(n, lkp) for n in lkp.cfg.nodeset.values()),
*(nodeset_dyn_lines(n, lkp) for n in lkp.cfg.nodeset_dyn.values()),
Expand Down

0 comments on commit c748a6d

Please sign in to comment.