Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG: fix esa.hubble tap url #2567

Merged
merged 2 commits into from Nov 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.rst
Expand Up @@ -26,6 +26,9 @@ esa.hubble
- Refactored query_criteria to use ehst.archive table therefore making the query
a lot faster. [#2524]

- Update TAP url to avoid 301 HTTPError. [#2567]


alma
^^^^

Expand Down
4 changes: 2 additions & 2 deletions astroquery/esa/hubble/core.py
Expand Up @@ -47,8 +47,8 @@ def __init__(self, tap_handler=None):
super().__init__()

if tap_handler is None:
self._tap = TapPlus(url="http://hst.esac.esa.int"
"/tap-server/tap/")
self._tap = TapPlus(url="https://hst.esac.esa.int"
"/tap-server/tap")
else:
self._tap = tap_handler

Expand Down