diff --git a/azure/durable_functions/models/utils/http_utils.py b/azure/durable_functions/models/utils/http_utils.py index 62d28f21..e45cef68 100644 --- a/azure/durable_functions/models/utils/http_utils.py +++ b/azure/durable_functions/models/utils/http_utils.py @@ -65,5 +65,5 @@ async def delete_async_request(url: str) -> List[Union[int, Any]]: """ async with aiohttp.ClientSession() as session: async with session.delete(url) as response: - data = await response.json() + data = await response.json(content_type=None) return [response.status, data]