- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 1.2k
Report endpoint_call.grape which includes the whole stack #2021
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
          
     Open
      
      
            Kukunin
  wants to merge
  5
  commits into
  ruby-grape:master
  
    
      
        
          
  
    
      Choose a base branch
      
     
    
      
        
      
      
        
          
          
        
        
          
            
              
              
              
  
           
        
        
          
            
              
              
           
        
       
     
  
        
          
            
          
            
          
        
       
    
      
from
SpotlightMediaLabs:master
  
      
      
   
  
    
  
  
  
 
  
      
    base: master
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.
          
          
  
     Open
                    Changes from all commits
      Commits
    
    
            Show all changes
          
          
            5 commits
          
        
        Select commit
          Hold shift + click to select a range
      
      e3a50ca
              
                Report endpoint_call.grape which includes the whole stack
              
              
                Kukunin 1594413
              
                Fix documentation
              
              
                Kukunin fc95bff
              
                Merge branch 'master' of https://github.com/ruby-grape/grape
              
              
                Kukunin c5c8601
              
                Make rubocop happy
              
              
                Kukunin 3a3aa73
              
                Merge tag 'v1.6.2'
              
              
                Kukunin 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
    
  
  
    
              
  
    
      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 | 
|---|---|---|
|  | @@ -137,6 +137,7 @@ | |
| - [Reloading in Rails Applications](#reloading-in-rails-applications) | ||
| - [Performance Monitoring](#performance-monitoring) | ||
| - [Active Support Instrumentation](#active-support-instrumentation) | ||
| - [endpoint_call.grape](#endpoint_callgrape) | ||
| - [endpoint_run.grape](#endpoint_rungrape) | ||
| - [endpoint_render.grape](#endpoint_rendergrape) | ||
| - [endpoint_run_filters.grape](#endpoint_run_filtersgrape) | ||
|  | @@ -3928,9 +3929,17 @@ Grape has built-in support for [ActiveSupport::Notifications](http://api.rubyonr | |
|  | ||
| The following are currently supported: | ||
|  | ||
| #### endpoint_call.grape | ||
|  | ||
| The main execution of an endpoint, includes filters, rendering and all middlewares. | ||
|  | ||
| * *endpoint* - The endpoint instance | ||
| * *response* - A typical Rack response, for example `[404, {"Content-Type"=>"application/json; charset=UTF-8"}, ["{\"error\":\"not_found\"}"]]` | ||
|  | ||
| #### endpoint_run.grape | ||
|  | ||
| The main execution of an endpoint, includes filters and rendering. | ||
| Similar to `endpoint_call.grape` but does not include middlewares, thus might be inaccurate. | ||
| One more difference that it returns original exceptions, before `rescue_from` handlers. | ||
| 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. Should be part of the text above. But this is unclear. What does "returns" mean here? | ||
|  | ||
| * *endpoint* - The endpoint instance | ||
|  | ||
|  | ||
  
    
      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
    
  
  
    
              
  
    
      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
    
  
  
    
              
  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.
  
    
  
    
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.
I think "inaccurate" is incorrect. I think here we want to highlight what this does, as opposed to what it doesn't. Maybe "Execution of the endpoint, excluding filters, middlewares or execution inside rescue_from blocks." + explain what happens during an exception?