Skip to content

Commit

Permalink
Add more detail to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Sep 21, 2024
1 parent 5e473a5 commit 666f1c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/palace/manager/service/storage/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def __init__(
field_names = [field[1] for field in field_tuple]
if "region" in field_names and self.region is None:
raise CannotLoadConfiguration(
"URL template requires a region, but no region was provided."
f"URL template requires a region, but no region was provided ({self.url_template})."
)
if "key" not in field_names:
raise CannotLoadConfiguration(
Expand Down

0 comments on commit 666f1c9

Please sign in to comment.