Skip to content

Commit

Permalink
Merge pull request #286 from Cray-HPE/backport-2.6
Browse files Browse the repository at this point in the history
CRAYSAT-1935: create_image_customization_session() missing `image_name` argument
  • Loading branch information
annapoorna-s-alt authored Nov 14, 2024
2 parents bf9b104 + 1fad4fb commit ae65589
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ 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.25.16] - 2024-11-13

### Changed
- Updated `begin_image_configure` to pass session name generated to address the
sat bootprep incorrect logging of 2 session names

## [3.25.15] - 2024-10-10

### Changed
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Top-level requirements for sat package to function.
# (C) Copyright 2019-2023 Hewlett Packard Enterprise Development LP.
# (C) Copyright 2019-2024 Hewlett Packard Enterprise Development LP.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
Expand Down
4 changes: 2 additions & 2 deletions sat/cli/bootprep/input/image.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# MIT License
#
# (C) Copyright 2021-2023 Hewlett Packard Enterprise Development LP
# (C) Copyright 2021-2024 Hewlett Packard Enterprise Development LP
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
Expand Down Expand Up @@ -403,7 +403,7 @@ def begin_image_configure(self):

try:
self.image_configure_session = self.cfs_client.create_image_customization_session(
self.configuration, self.image_id_to_configure, self.configuration_group_names, self.name)
session_name, self.configuration, self.image_id_to_configure, self.configuration_group_names, self.name)
except APIError as err:
raise ImageCreateError(f'Failed to launch image customization CFS session: {err}')

Expand Down

0 comments on commit ae65589

Please sign in to comment.