Skip to content

Commit

Permalink
Signer exception fix v2.11.9 (#809)
Browse files Browse the repository at this point in the history
  • Loading branch information
VipulMascarenhas committed Apr 25, 2024
2 parents 7cc634c + 651450e commit 7e89d18
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
5 changes: 3 additions & 2 deletions ads/aqua/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,9 +582,10 @@ def fetch_service_compartment() -> Union[str, None]:
file_path=config_file_name,
config_file_name=CONTAINER_INDEX,
)
except AquaFileNotFoundError:
except Exception as e:
logger.error(
f"Config file {config_file_name}/{CONTAINER_INDEX} to fetch service compartment OCID could not be found."
f"Config file {config_file_name}/{CONTAINER_INDEX} to fetch service compartment OCID could not be found. "
f"\n{str(e)}."
)
return
compartment_mapping = config.get(COMPARTMENT_MAPPING_KEY)
Expand Down
7 changes: 7 additions & 0 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
Release Notes
=============

2.11.9
------
Release date: April 24, 2024

* Fixed bugs and introduced enhancements following our recent release.


2.11.8
------
Release date: April 24, 2024
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"

# Required
name = "oracle_ads" # the install (PyPI) name; name for local build in [tool.flit.module] section below
version = "2.11.8"
version = "2.11.9"

# Optional
description = "Oracle Accelerated Data Science SDK"
Expand Down

0 comments on commit 7e89d18

Please sign in to comment.