From c78669878440ac34cf46d9a06133ca8fc8c4911d Mon Sep 17 00:00:00 2001 From: alaskowski <alaskowski@ethz.ch> Date: Tue, 18 Jul 2023 09:24:51 +0200 Subject: [PATCH] SSDM-13735: investigating failing pybis test --- api-openbis-python3-pybis/src/python/pybis/pybis.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api-openbis-python3-pybis/src/python/pybis/pybis.py b/api-openbis-python3-pybis/src/python/pybis/pybis.py index a0b8674fe58..bba0900153c 100644 --- a/api-openbis-python3-pybis/src/python/pybis/pybis.py +++ b/api-openbis-python3-pybis/src/python/pybis/pybis.py @@ -1286,6 +1286,7 @@ class Openbis: "Certificate validation failed. Use o=Openbis(url, verify_certificates=False) if you are using self-signed certificates." ) from exc except requests.ConnectionError as exc: + print(f"EXCEPTION:{exc}") raise requests.ConnectionError( "Could not connecto to the openBIS server. Please check your internet connection, the specified hostname and port." ) from exc -- GitLab