We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9cc9e3 commit 6f05a41Copy full SHA for 6f05a41
ads/aqua/utils.py
@@ -582,9 +582,10 @@ def fetch_service_compartment() -> Union[str, None]:
582
file_path=config_file_name,
583
config_file_name=CONTAINER_INDEX,
584
)
585
- except Exception:
+ except Exception as e:
586
logger.error(
587
- 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. "
588
+ f"\n{str(e)}."
589
590
return
591
compartment_mapping = config.get(COMPARTMENT_MAPPING_KEY)
0 commit comments