- 
                Notifications
    You must be signed in to change notification settings 
- Fork 2.7k
fix: Add exception handling for POST request failures in StreamableHTTP #1008
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
          
     Draft
      
      
            Kulaxyz
  wants to merge
  5
  commits into
  modelcontextprotocol:main
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
Kulaxyz:main
  
      
      
   
  
    
  
  
  
 
  
      
    base: main
Could not load branches
            
              
  
    Branch not found: {{ refName }}
  
            
                
      Loading
              
            Could not load tags
            
            
              Nothing to show
            
              
  
            
                
      Loading
              
            Are you sure you want to change the base?
            Some commits from the old base branch may be removed from the timeline,
            and old review comments may become outdated.
          
          
  
     Draft
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            5 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      c5270e7
              
                fix: add exception handling for POST request failures in StreamableHT…
              
              
                 ef32710
              
                Merge branch 'main' into main
              
              
                Kulaxyz 73ef988
              
                Merge branch 'main' into main
              
              
                Kulaxyz 5974b39
              
                Merge branch 'main' into main
              
              
                Kulaxyz 89ff996
              
                Merge branch 'main' into main
              
              
                Kulaxyz File filter
Filter by extension
Conversations
          Failed to load comments.   
        
        
          
      Loading
        
  Jump to
        
          Jump to file
        
      
      
          Failed to load files.   
        
        
          
      Loading
        
  Diff view
Diff view
There are no files selected for viewing
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
              | Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -255,40 +255,50 @@ async def _handle_post_request(self, ctx: RequestContext) -> None: | |
| headers = self._prepare_request_headers(ctx.headers) | ||
| message = ctx.session_message.message | ||
| is_initialization = self._is_initialization_request(message) | ||
| try: | ||
| async with ctx.client.stream( | ||
| "POST", | ||
| self.url, | ||
| json=message.model_dump(by_alias=True, mode="json", exclude_none=True), | ||
| headers=headers, | ||
| ) as response: | ||
| if response.status_code == 202: | ||
| logger.debug("Received 202 Accepted") | ||
| return | ||
|  | ||
| async with ctx.client.stream( | ||
| "POST", | ||
| self.url, | ||
| json=message.model_dump(by_alias=True, mode="json", exclude_none=True), | ||
| headers=headers, | ||
| ) as response: | ||
| if response.status_code == 202: | ||
| logger.debug("Received 202 Accepted") | ||
| return | ||
|  | ||
| if response.status_code == 404: | ||
| if isinstance(message.root, JSONRPCRequest): | ||
| await self._send_session_terminated_error( | ||
| ctx.read_stream_writer, | ||
| message.root.id, | ||
| ) | ||
| return | ||
| if response.status_code == 404: | ||
| if isinstance(message.root, JSONRPCRequest): | ||
| await self._send_session_terminated_error( | ||
| ctx.read_stream_writer, | ||
| message.root.id, | ||
| ) | ||
| return | ||
|  | ||
| response.raise_for_status() | ||
| if is_initialization: | ||
| self._maybe_extract_session_id_from_response(response) | ||
| response.raise_for_status() | ||
| if is_initialization: | ||
| self._maybe_extract_session_id_from_response(response) | ||
|  | ||
| content_type = response.headers.get(CONTENT_TYPE, "").lower() | ||
| content_type = response.headers.get(CONTENT_TYPE, "").lower() | ||
|  | ||
| if content_type.startswith(JSON): | ||
| await self._handle_json_response(response, ctx.read_stream_writer, is_initialization) | ||
| elif content_type.startswith(SSE): | ||
| await self._handle_sse_response(response, ctx, is_initialization) | ||
| else: | ||
| await self._handle_unexpected_content_type( | ||
| content_type, | ||
| ctx.read_stream_writer, | ||
| ) | ||
| if content_type.startswith(JSON): | ||
| await self._handle_json_response(response, ctx.read_stream_writer, is_initialization) | ||
| elif content_type.startswith(SSE): | ||
| await self._handle_sse_response(response, ctx, is_initialization) | ||
| else: | ||
| await self._handle_unexpected_content_type( | ||
| content_type, | ||
| ctx.read_stream_writer, | ||
| ) | ||
| except Exception as exc: | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is too broad for the specific case you mention - we shouldn't be doing this broad exception handling specifically for 5xx= failures as we might mask other issues this way. | ||
| logger.error(f"Error in _handle_post_request: {exc}") | ||
| request_id = "Unknown" | ||
| if isinstance(message.root, JSONRPCRequest): | ||
| request_id = message.root.id | ||
| error_response = JSONRPCError( | ||
| jsonrpc="2.0", id=request_id, error=ErrorData(code=-32603, message=f"Transport error: {str(exc)}") | ||
| ) | ||
| error_session_message = SessionMessage(JSONRPCMessage(error_response)) | ||
| await ctx.read_stream_writer.send(error_session_message) | ||
|  | ||
| async def _handle_json_response( | ||
| self, | ||
|  | ||
      
      Oops, something went wrong.
        
    
  
  Add this suggestion to a batch that can be applied as a single commit.
  This suggestion is invalid because no changes were made to the code.
  Suggestions cannot be applied while the pull request is closed.
  Suggestions cannot be applied while viewing a subset of changes.
  Only one suggestion per line can be applied in a batch.
  Add this suggestion to a batch that can be applied as a single commit.
  Applying suggestions on deleted lines is not supported.
  You must change the existing code in this line in order to create a valid suggestion.
  Outdated suggestions cannot be applied.
  This suggestion has been applied or marked resolved.
  Suggestions cannot be applied from pending reviews.
  Suggestions cannot be applied on multi-line comments.
  Suggestions cannot be applied while the pull request is queued to merge.
  Suggestion cannot be applied right now. Please check back later.
  
    
  
    
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should instead expand this or add a case like
That does specific handling of only those specific errors you're encountering and that are expected that we want to handle. That would prevent us from masking other errors that might occur.
Other unexpected HTTP errors should be handled by raise_for_status() lower down.