Skip to content

Commit 7e89d18

Browse files
Signer exception fix v2.11.9 (#809)
2 parents 7cc634c + 651450e commit 7e89d18

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

ads/aqua/utils.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -582,9 +582,10 @@ def fetch_service_compartment() -> Union[str, None]:
582582
file_path=config_file_name,
583583
config_file_name=CONTAINER_INDEX,
584584
)
585-
except AquaFileNotFoundError:
585+
except Exception as e:
586586
logger.error(
587-
f"Config file {config_file_name}/{CONTAINER_INDEX} to fetch service compartment OCID could not be found."
587+
f"Config file {config_file_name}/{CONTAINER_INDEX} to fetch service compartment OCID could not be found. "
588+
f"\n{str(e)}."
588589
)
589590
return
590591
compartment_mapping = config.get(COMPARTMENT_MAPPING_KEY)

docs/source/release_notes.rst

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Release Notes
33
=============
44

5+
2.11.9
6+
------
7+
Release date: April 24, 2024
8+
9+
* Fixed bugs and introduced enhancements following our recent release.
10+
11+
512
2.11.8
613
------
714
Release date: April 24, 2024

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ build-backend = "flit_core.buildapi"
2121

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

2626
# Optional
2727
description = "Oracle Accelerated Data Science SDK"

0 commit comments

Comments
 (0)