From 976b80b8fbc5d331f2fb4486b76bcc470820d33e Mon Sep 17 00:00:00 2001 From: Emanuele Palazzetti Date: Sun, 13 Aug 2017 22:35:28 +0200 Subject: [PATCH] [ci] use localhost for aiobotocore calls --- tests/contrib/aiobotocore/utils.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/contrib/aiobotocore/utils.py b/tests/contrib/aiobotocore/utils.py index 157bcc914f5..404f1ad65ba 100644 --- a/tests/contrib/aiobotocore/utils.py +++ b/tests/contrib/aiobotocore/utils.py @@ -5,12 +5,12 @@ LOCALSTACK_ENDPOINT_URL = { - 's3': 'http://127.0.0.1:55000', - 'ec2': 'http://127.0.0.1:55001', - 'kms': 'http://127.0.0.1:55002', - 'sqs': 'http://127.0.0.1:55003', - 'lambda': 'http://127.0.0.1:55004', - 'kinesis': 'http://127.0.0.1:55005', + 's3': 'http://localhost:55000', + 'ec2': 'http://localhost:55001', + 'kms': 'http://localhost:55002', + 'sqs': 'http://localhost:55003', + 'lambda': 'http://localhost:55004', + 'kinesis': 'http://localhost:55005', }