Skip to content

Commit 75b347e

Browse files
committed
Use HTTPS for vao.stsci.edu
1 parent 0f245db commit 75b347e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

astroquery/vo_conesearch/validator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Conf(_config.ConfigNamespace):
1414
"""
1515
# http://www.ivoa.net/documents/RegTAP/20171206/WD-RegTAP-1.1-20171206.pdf
1616
conesearch_master_list = _config.ConfigItem(
17-
'http://vao.stsci.edu/regtap/tapservice.aspx/sync?lang=adql&'
17+
'https://vao.stsci.edu/regtap/tapservice.aspx/sync?lang=adql&'
1818
'query=SELECT%20*%20FROM%20rr.capability%20'
1919
'NATURAL%20JOIN%20rr.interface%20NATURAL%20JOIN%20rr.resource%20'
2020
'NATURAL%20JOIN%20rr.res_subject%20WHERE%20'

astroquery/vo_conesearch/validator/tstquery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def parse_cs(ivoid, cap_index=1):
3030
ivoid = ivoid.decode('ascii')
3131

3232
# Production server.
33-
url = ("http://vao.stsci.edu/regtap/tapservice.aspx/sync?lang=adql&"
33+
url = ("https://vao.stsci.edu/regtap/tapservice.aspx/sync?lang=adql&"
3434
"query=select%20detail_xpath%2Cdetail_value%20from%20"
3535
"rr.res_detail%20where%20"
3636
"ivoid%3D%27{0}%27%20and%20cap_index={1}%20and%20"

0 commit comments

Comments
 (0)