Skip to content

Commit

Permalink
Use https in RESIF webservice url
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienengels committed Aug 24, 2021
1 parent ae1ed9b commit bdfbd9e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ Changes:
* Inventory addition now consistently uses shallow copies (#2675, #2694)
- obspy.clients.fdsn:
* add URL mapping for IRISPH5 (see #2739)
* update RESIF URL mapping to use https
- obspy.clients.seedlink:
* Fix a bug in basic client when printing debug output (see #2734)
- obspy.io.gse2:
Expand Down
2 changes: 1 addition & 1 deletion obspy/CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Danecek, Peter
van Driel, Martin
Egdorf, Sven
Ely, Geoffrey
Engels, Fabian
Engels, Fabien
Ermert, Laura
Eulenfeld, Tom
Fabbri, Tommaso
Expand Down
2 changes: 1 addition & 1 deletion obspy/clients/fdsn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
ODC http://www.orfeus-eu.org
ORFEUS http://www.orfeus-eu.org
RASPISHAKE https://fdsnws.raspberryshakedata.com
RESIF http://ws.resif.fr
RESIF https://ws.resif.fr
SCEDC http://service.scedc.caltech.edu
TEXNET http://rtserve.beg.utexas.edu
UIB-NORSAR http://eida.geo.uib.no
Expand Down
2 changes: 1 addition & 1 deletion obspy/clients/fdsn/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class FDSNNoServiceException(FDSNException):
"NOA": "http://eida.gein.noa.gr",
"ODC": "http://www.orfeus-eu.org",
"ORFEUS": "http://www.orfeus-eu.org",
"RESIF": "http://ws.resif.fr",
"RESIF": "https://ws.resif.fr",
"RASPISHAKE": "https://fdsnws.raspberryshakedata.com",
"SCEDC": "http://service.scedc.caltech.edu",
"TEXNET": "http://rtserve.beg.utexas.edu",
Expand Down
4 changes: 2 additions & 2 deletions obspy/clients/fdsn/tests/test_eidaws_routing_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_response_splitting(self):
http://webservices.ingv.it/fdsnws/station/1/query
NI * * * 2017-01-01T00:00:00 2017-01-01T00:10:00
http://ws.resif.fr/fdsnws/station/1/query
https://ws.resif.fr/fdsnws/station/1/query
ND * * * 2017-01-01T00:00:00 2017-01-01T00:10:00
""".strip()
# This should return a dictionary that contains the root URL of each
Expand All @@ -67,7 +67,7 @@ def test_response_splitting(self):
"NA * * * 2017-01-01T00:00:00 2017-01-01T00:10:00"),
"http://webservices.ingv.it": (
"NI * * * 2017-01-01T00:00:00 2017-01-01T00:10:00"),
"http://ws.resif.fr": (
"https://ws.resif.fr": (
"ND * * * 2017-01-01T00:00:00 2017-01-01T00:10:00")})

data = """
Expand Down

0 comments on commit bdfbd9e

Please sign in to comment.