Skip to content

Commit 21a8039

Browse files
author
Kyon Caldera
committed
refactor(sigv4_helper.py): remove default service string
1 parent ceef283 commit 21a8039

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

aws_mcp_proxy/sigv4_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def create_sigv4_auth(
186186

187187

188188
def create_sigv4_client(
189-
service: str = 'your-service',
189+
service: str = '',
190190
profile: Optional[str] = None,
191191
region: Optional[str] = None,
192192
headers: Optional[Dict[str, str]] = None,

tests/test_sigv4_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def test_create_sigv4_client_default(self, mock_client_class, mock_create_auth):
307307
result = create_sigv4_client()
308308

309309
# Verify client was created correctly
310-
mock_create_auth.assert_called_once_with('your-service', None, None)
310+
mock_create_auth.assert_called_once_with('', None, None)
311311

312312
# Check that AsyncClient was called with correct parameters
313313
call_args = mock_client_class.call_args

0 commit comments

Comments
 (0)