Fix DeliveryWorker not to call failure_tracker when inbox_url is unavailable (#13482)
This commit is contained in:
		
							parent
							
								
									ea200a178e
								
							
						
					
					
						commit
						04c8d825f6
					
				
					 1 changed files with 6 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -23,10 +23,12 @@ class ActivityPub::DeliveryWorker
 | 
			
		|||
 | 
			
		||||
    perform_request
 | 
			
		||||
  ensure
 | 
			
		||||
    if @performed
 | 
			
		||||
      failure_tracker.track_success!
 | 
			
		||||
    else
 | 
			
		||||
      failure_tracker.track_failure!
 | 
			
		||||
    if @inbox_url.present?
 | 
			
		||||
      if @performed
 | 
			
		||||
        failure_tracker.track_success!
 | 
			
		||||
      else
 | 
			
		||||
        failure_tracker.track_failure!
 | 
			
		||||
      end
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue