Skip to content

Commit c748a6d

Browse files
committed
Fix conf generation on reconfigure
By not passing lkp to conflines, it was using the old lkp to generate cloud.conf.
1 parent 1af0a8b commit c748a6d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
1313
- Only attempt static node resume when node is powered down.
1414
- Fix CUDA on Ubuntu by installing CUDA via runfile alongside NVIDIA driver from
1515
signed repo.
16+
- Fix conf generation issue on reconfiguration.
1617

1718
## \[6.1.1\]
1819

scripts/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def make_cloud_conf(lkp=lkp, cloud_parameters=None):
290290

291291
lines = [
292292
FILE_PREAMBLE,
293-
conflines(cloud_parameters),
293+
conflines(cloud_parameters, lkp),
294294
loginlines(),
295295
*(nodeset_lines(n, lkp) for n in lkp.cfg.nodeset.values()),
296296
*(nodeset_dyn_lines(n, lkp) for n in lkp.cfg.nodeset_dyn.values()),

0 commit comments

Comments
 (0)