From 614cb8975bfbd61947c68b68de0090c600ea4ad7 Mon Sep 17 00:00:00 2001 From: Cizz22 Date: Thu, 4 Sep 2025 09:24:33 +0700 Subject: [PATCH] fix bug --- src/calculation_target_reliability/service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calculation_target_reliability/service.py b/src/calculation_target_reliability/service.py index 552bff0..6430d0c 100644 --- a/src/calculation_target_reliability/service.py +++ b/src/calculation_target_reliability/service.py @@ -57,10 +57,10 @@ async def get_simulation_results(*, simulation_id: str, token: str): plant_task = client.get(calc_plant_result, headers=headers) # Run all three requests concurrently - calc_response, plot_response, plant_response = await asyncio.gather(calc_task, plot_task, plant_task) + calc_response, plant_response = await asyncio.gather(calc_task, plant_task) calc_response.raise_for_status() - plot_response.raise_for_status() + # plot_response.raise_for_status() plant_response.raise_for_status() calc_data = calc_response.json()["data"]