This is an automated email from the ASF dual-hosted git repository. eamonford pushed a commit to branch s3-support in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ingester.git
commit dc519abcd7861234226d865db5c6ea02c045bbc7 Author: Eamon Ford <[email protected]> AuthorDate: Thu Oct 29 17:37:02 2020 -0700 no need to hardcode aws creds --- collection_manager/collection_manager/services/S3Observer.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/collection_manager/collection_manager/services/S3Observer.py b/collection_manager/collection_manager/services/S3Observer.py index d204890..87458a9 100644 --- a/collection_manager/collection_manager/services/S3Observer.py +++ b/collection_manager/collection_manager/services/S3Observer.py @@ -8,9 +8,6 @@ from typing import Set, Dict, Optional, Callable, Awaitable import aioboto3 -os.environ['AWS_PROFILE'] = "saml-pub" -os.environ['AWS_DEFAULT_REGION'] = "us-west-2" - @dataclass class S3Event:
