Skip to content

Commit 258beba

Browse files
authored
Merge pull request #28 from RubenTurciosTensoriot/fix/bedrock-client-region
Remove default variable for BedrockClient.
2 parents aefa4c5 + 682eb79 commit 258beba

File tree

1 file changed

+1
-1
lines changed
  • lib/idp_common_pkg/idp_common/bedrock

1 file changed

+1
-1
lines changed

lib/idp_common_pkg/idp_common/bedrock/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def __init__(
6464
max_backoff: Maximum backoff time in seconds
6565
metrics_enabled: Whether to publish metrics
6666
"""
67-
self.region = region or os.environ.get('AWS_REGION', 'us-west-2')
67+
self.region = region or os.environ.get('AWS_REGION')
6868
self.max_retries = max_retries
6969
self.initial_backoff = initial_backoff
7070
self.max_backoff = max_backoff

0 commit comments

Comments
 (0)