We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5f8c9f commit 63b1d23Copy full SHA for 63b1d23
azure/durable_functions/models/utils/http_utils.py
@@ -65,5 +65,5 @@ async def delete_async_request(url: str) -> List[Union[int, Any]]:
65
"""
66
async with aiohttp.ClientSession() as session:
67
async with session.delete(url) as response:
68
- data = await response.json()
+ data = await response.json(content_type=None)
69
return [response.status, data]
0 commit comments