From 4497357b5fe815516fe8d60f50583a5b546e8c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20de=20la=20R=C3=BAa=20Mart=C3=ADnez?= Date: Fri, 30 Jun 2023 14:42:16 +0200 Subject: [PATCH] [HWORKS-622] Fix istio client _close() call --- python/hsml/client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/hsml/client/__init__.py b/python/hsml/client/__init__.py index 7b0644413..db6308dd0 100644 --- a/python/hsml/client/__init__.py +++ b/python/hsml/client/__init__.py @@ -144,5 +144,5 @@ def set_knative_domain(knative_domain): def stop(): global _hopsworks_client, _istio_client _hopsworks_client._close() - _istio_client.close() + _istio_client._close() _hopsworks_client = _istio_client = None