Skip to content

Commit 0b83978

Browse files
committed
Define tap_url in config; maxrec=1000
1 parent 3e3e45d commit 0b83978

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

astroquery/eso/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ class Conf(_config.ConfigNamespace):
1111
"""
1212

1313
row_limit = _config.ConfigItem(
14-
50,
14+
1000,
1515
'Maximum number of rows returned (set to -1 for unlimited).')
1616
username = _config.ConfigItem(
1717
"",
1818
'Optional default username for ESO archive.')
19-
query_instrument_url = _config.ConfigItem(
20-
"http://archive.eso.org/wdb/wdb/eso",
21-
'Root query URL for main and instrument queries.')
19+
tap_url = _config.ConfigItem(
20+
"https://archive.eso.org/tap_obs",
21+
'URL for TAP queries.')
2222

2323

2424
conf = Conf()

0 commit comments

Comments
 (0)