Skip to content

Commit 18e51f0

Browse files
author
Clara Brasseur
committed
changelog
1 parent aff411a commit 18e51f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ mast
4343
- Added Zcut functionality to astroquery [#1911]
4444
- Fixed error causing empty products passed to ``Observations.get_product_list()`` to yeild a
4545
non-empty result. [#1921]
46+
- Changed AWS cloud access from RequesterPays to anonymous acces [#1980]
4647

4748
esa/hubble
4849
^^^^^^^^^^

astroquery/mast/cloud.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(self, provider="AWS", profile=None, verbose=False):
4949
if profile is not None:
5050
warnings.warn(("MAST cloud data is now free to access and does "
5151
"not require an AWS account"), AstropyDeprecationWarning)
52-
52+
5353
import boto3
5454
import botocore
5555

@@ -110,7 +110,6 @@ def get_cloud_uri(self, data_product, include_bucket=True, full_url=False):
110110
found in the cloud, None is returned.
111111
"""
112112

113-
114113
s3_client = self.boto3.client('s3', config=self.config)
115114

116115
path = utils.mast_relative_path(data_product["dataURI"])

0 commit comments

Comments
 (0)