Skip to content

Commit

Permalink
Merge branch 'release/2.10' into CASMCMS-9162-release-2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mharding-hpe authored Oct 15, 2024
2 parents e38757a + 53c9b6d commit 70e6448
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ 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).

## [Unreleased]

## [2.10.28] - 2024-10-15
### Added
#### BOS option
- cfs_read_timeout: Allow the amount of time BOS waits for a response from CFS before
timing out to be configurable

### Fixed
- Fix per-bootset CFS setting

## [2.10.27] - 2024-10-14
### Fixed
- Fix incorrect keyword argument in base operator logging call
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 70e6448

Please sign in to comment.