From a4472fde7ed7a242f7aa11045da740e8ba070b52 Mon Sep 17 00:00:00 2001 From: Steven Sherburn Date: Wed, 24 Dec 2025 10:42:50 +1300 Subject: [PATCH] Permit https and url clients --- tsdatacruncher/utils/tsdata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsdatacruncher/utils/tsdata.py b/tsdatacruncher/utils/tsdata.py index 1861974..4e839d0 100755 --- a/tsdatacruncher/utils/tsdata.py +++ b/tsdatacruncher/utils/tsdata.py @@ -41,8 +41,8 @@ def create_client(datasource): protocol, server_str = datasource.split('://', 1) # Handle FDSN protocols - if protocol in ['fdsn', 'http', 'fdsnws']: - return FDSNClient(server_str) + if protocol in ['fdsn', 'http', 'https', 'fdsnws']: + return FDSNClient(datasource) # Handle waveserver protocols elif protocol in ['wws', 'waveserver']: