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 25600d4 commit 178571bCopy full SHA for 178571b
src/mcp/client/streamable.py
@@ -95,8 +95,11 @@ async def post_writer():
95
*headers,
96
),
97
)
98
+ content_type = response.headers.get("content-type")
99
logger.debug(
- f"response {url=} content-type={response.headers.get("content-type")} body={response.text}"
100
+ f"response {url=} "
101
+ f"content-type={content_type} "
102
+ f"body={response.text}"
103
104
105
response.raise_for_status()
0 commit comments