Skip to content

Commit

Permalink
CASMCMS-9165: Fix per-bootset CFS setting
Browse files Browse the repository at this point in the history
  • Loading branch information
mharding-hpe committed Oct 15, 2024
1 parent 3d6c737 commit 16e5525
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
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).

## [2.30.5] - 2024-10-15
### Fixed
- Fix per-bootset CFS setting

## [2.30.4] - 2024-10-15
### Added
#### BOS option
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 @@ -364,7 +364,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 16e5525

Please sign in to comment.