-
-
Notifications
You must be signed in to change notification settings - Fork 408
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
Gaia.load_tables(only_names=True) no longer works #1910
Comments
Confirmed, I can reproduce the issue locally. Unfortunately I have no clue. Need the Gaia team to help us here. |
I am getting a similar issue using Here's my code: from astroquery.gaia import Gaia
query = \
"""
SELECT
*
FROM
gaiadr2.gaia_source
WHERE
source_id in {}
""".format(source_ids)
job = Gaia.launch_job_async(query, dump_to_file=False) This throws the following HTTP connection error: ---------------------------------------------------------------------------
HTTPError Traceback (most recent call last)
<ipython-input-32-2da2eb853349> in <module>()
----> 1 job = Gaia.launch_job_async(query, dump_to_file=False)
~/anaconda3/lib/python3.6/site-packages/astroquery/utils/tap/core.py in launch_job_async(self, query, name, output_file, output_format, verbose, dump_to_file, background, upload_resource, upload_table_name, autorun)
422 self.__connHandler.dump_to_file(suitableOutputFile,
423 response)
--> 424 raise requests.exceptions.HTTPError(response.reason)
425 else:
426 location = self.__connHandler.find_header(
HTTPError: OK |
This looks like an upstream error, maybe. Thanks for reporting! |
Can confirm I have the same problem. I sent an email to the Gaia Helpdesk to see if they are aware of a problem on their end. I will report back. It looks like they are gearing up for the Early Data Release 3, so something might have broken in the excitement. |
If the problem is at the Gaia server, it might be good to make a note of the response it's sending now: maybe |
Here's the response from Gaia Helpdesk:
|
Can anyone verify if this is back up, and if so, close this? |
I can confirm that
Gaia.load_tables(only_names=True)
is working again.
Best,
…On Fri, Dec 4, 2020 at 4:12 AM Adam Ginsburg ***@***.***> wrote:
Can anyone verify if this is back up, and if so, close this?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#1910 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJLRF4DHKYCL2F45IFEIBATSTBHSHANCNFSM4UJUQ7TQ>
.
|
Before closing this, can I suggest it would be a valuable enhancement if astroquery would generate an interpretable error message if the Gaia server is down? In my communication with the Gaia help desk, they expressed interest in helping with this. |
Let's open that as a new issue. |
Running the following code
produces the following errors
The text was updated successfully, but these errors were encountered: