You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's currently code in the high level s3 commands that validate that a region is specified (either through a CLI param, env vars, or config file). However, botocore does not require a region as s3 is marked as a "global" service at the botocore layer. This makes the region validation inconsistent between s3 and s3api, as s3api does not require a region.
We should be able to safely remove check_region in this code.
The text was updated successfully, but these errors were encountered:
There's currently code in the high level s3 commands that validate that a region is specified (either through a CLI param, env vars, or config file). However, botocore does not require a region as s3 is marked as a "global" service at the botocore layer. This makes the region validation inconsistent between
s3
ands3api
, ass3api
does not require a region.We should be able to safely remove
check_region
in this code.The text was updated successfully, but these errors were encountered: