Skip to content

Commit 63b1d23

Browse files
authored
no JSON response format validation (#188)
1 parent a5f8c9f commit 63b1d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure/durable_functions/models/utils/http_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,5 @@ async def delete_async_request(url: str) -> List[Union[int, Any]]:
6565
"""
6666
async with aiohttp.ClientSession() as session:
6767
async with session.delete(url) as response:
68-
data = await response.json()
68+
data = await response.json(content_type=None)
6969
return [response.status, data]

0 commit comments

Comments
 (0)