Skip to content

Commit

Permalink
CASMCMS-9165: Fix per-bootset CFS setting
Browse files Browse the repository at this point in the history
(cherry picked from commit 16e5525)
  • Loading branch information
mharding-hpe committed Oct 15, 2024
1 parent 42ed5f8 commit ff57b68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Fixed
- Fix per-bootset CFS setting

## [2.10.27] - 2024-10-14
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/bos/operators/session_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def _get_configuration_from_boot_set(self, boot_set: dict):
"""
if not self.template.get('enable_cfs', True):
return ''
bs_config = boot_set.get('configuration', '')
bs_config = boot_set.get('cfs', {}).get('configuration', '')
if bs_config:
return bs_config
# Otherwise, we take the configuration value from the session template itself
Expand Down

0 comments on commit ff57b68

Please sign in to comment.