We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d7b311 commit ae57aa1Copy full SHA for ae57aa1
1 file changed
src/mcp/client/auth/utils.py
@@ -240,8 +240,6 @@ async def handle_registration_response(response: Response) -> OAuthClientInforma
240
content = await response.aread()
241
client_info = OAuthClientInformationFull.model_validate_json(content)
242
return client_info
243
- # self.context.client_info = client_info
244
- # await self.context.storage.set_client_info(client_info)
245
except ValidationError as e: # pragma: no cover
246
raise OAuthRegistrationError(f"Invalid registration response: {e}")
247
0 commit comments