From 65b708c8af0f2fa1440f9baafeb4d5d56250a35e Mon Sep 17 00:00:00 2001 From: hfj Date: Tue, 4 Mar 2025 17:28:11 +0100 Subject: [PATCH] Fix to remote --- esd_services_api_client/crystal/_connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esd_services_api_client/crystal/_connector.py b/esd_services_api_client/crystal/_connector.py index e6abd63..1adc14a 100644 --- a/esd_services_api_client/crystal/_connector.py +++ b/esd_services_api_client/crystal/_connector.py @@ -184,7 +184,7 @@ def get_api_path() -> str: tag=tag, ).to_dict() - run_response = self._http.post(get_api_path(), json=run_body) + run_response = self._http.post(get_api_path(), data=run_body) # raise if not successful run_response.raise_for_status()