Skip to content

Commit

Permalink
Merge pull request #301 from Cray-HPE/develop
Browse files Browse the repository at this point in the history
Release 2.17.5 for CSM 1.6
  • Loading branch information
mharding-hpe authored Apr 19, 2024
2 parents 8a454e2 + 9f41dbb commit 9ab3f51
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.17.5] - 2024-04-19
### Changed
- Reduced v2 default polling frequency from 60 seconds to 15 seconds, to improve performance
- Reconciled discrepancies in default v2 option values between `src/bos/operators/utils/clients/bos/options.py`
and `src/bos/server/controllers/v2/options.py`

## [2.17.4] - 2024-03-29
### Changed
- Make BOS be more efficient when patching CFS components.
Expand Down
8 changes: 4 additions & 4 deletions src/bos/operators/utils/clients/bos/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,23 +77,23 @@ def logging_level(self):

@property
def polling_frequency(self):
return self.get_option('polling_frequency', int, 60)
return self.get_option('polling_frequency', int, 15)

@property
def discovery_frequency(self):
return self.get_option('discovery_frequency', int, 5*60)

@property
def max_boot_wait_time(self):
return self.get_option('max_boot_wait_time', int, 600)
return self.get_option('max_boot_wait_time', int, 1200)

@property
def max_power_on_wait_time(self):
return self.get_option('max_power_on_wait_time', int, 30)
return self.get_option('max_power_on_wait_time', int, 120)

@property
def max_power_off_wait_time(self):
return self.get_option('max_power_off_wait_time', int, 180)
return self.get_option('max_power_off_wait_time', int, 300)

@property
def disable_components_on_completion(self):
Expand Down
2 changes: 1 addition & 1 deletion src/bos/server/controllers/v2/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'max_boot_wait_time': 1200,
'max_power_on_wait_time': 120,
'max_power_off_wait_time': 300,
'polling_frequency': 60,
'polling_frequency': 15,
'default_retry_policy': 3,
}

Expand Down

0 comments on commit 9ab3f51

Please sign in to comment.