Skip to content

Commit be7bb66

Browse files
fix: Add region param to Integ Test flow (#36)
1 parent 31feef3 commit be7bb66

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/integ/mcp/simple_mcp_client.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ def _build_mcp_config(endpoint: str, region_name: str):
5151

5252
return {
5353
'command': 'aws-mcp-proxy',
54-
'args': [endpoint, '--log-level', 'DEBUG'],
54+
'args': [
55+
endpoint,
56+
'--log-level',
57+
'DEBUG',
58+
'--region',
59+
region_name,
60+
],
5561
'env': environment_variables,
5662
}

0 commit comments

Comments
 (0)