Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport sat-container image to 3.32.8 #278

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ 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).

## [3.32.8] - 2024-10-21

### Fixed
- Fix unused code in `get_config_value` for handling infinite BOS timeouts.

## [3.32.7] - 2024-10-15

### Fixed
- Remove the ability to read VCS password from a file which is no longer necessary in `sat bootprep`.

## [3.32.6] - 2024-10-08

### Changed
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.lock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ cffi==1.15.0
charset-normalizer==2.0.12
click==8.0.4
coverage==6.3.2
cray-product-catalog==2.3.1
cray-product-catalog==2.4.1
croniter==0.3.37
cryptography==43.0.1
csm-api-client==2.2.2
csm-api-client==2.2.3
dataclasses-json==0.5.6
docutils==0.17.1
google-auth==2.6.0
Expand Down
4 changes: 2 additions & 2 deletions requirements.lock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ certifi==2024.7.4
cffi==1.15.0
charset-normalizer==2.0.12
click==8.0.4
cray-product-catalog==2.3.1
cray-product-catalog==2.4.1
croniter==0.3.37
cryptography==43.0.1
csm-api-client==2.2.2
csm-api-client==2.2.3
dataclasses-json==0.5.6
google-auth==2.6.0
htmlmin==0.1.12
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
argcomplete
boto3
botocore
cray-product-catalog >= 2.3.1
csm-api-client >= 2.2.2, <3.0
cray-product-catalog >= 2.4.1
csm-api-client >= 2.2.3, <3.0
croniter >= 0.3, < 1.0
inflect >= 0.2.5, < 3.0
Jinja2 >= 3.0, < 4.0
Expand Down
3 changes: 0 additions & 3 deletions sat/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,6 @@ def get_config_value(query_string):

value = CONFIG.get(section, option)

if option.lower() == 'timeout' and value == '-1':
return math.inf

return value


Expand Down
Loading