Spread out crawling randomly to avoid DDoSing the link (#8445)
* Spread out crawling randomly to avoid DDoSing the link Fix #4486 * Remove trailing whitespace
This commit is contained in:
		
							parent
							
								
									df06f53f9b
								
							
						
					
					
						commit
						b4ba4b1b5d
					
				
					 1 changed files with 3 additions and 1 deletions
				
			
		| 
						 | 
					@ -104,7 +104,9 @@ class ActivityPub::Activity
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def crawl_links(status)
 | 
					  def crawl_links(status)
 | 
				
			||||||
    return if status.spoiler_text?
 | 
					    return if status.spoiler_text?
 | 
				
			||||||
    LinkCrawlWorker.perform_async(status.id)
 | 
					
 | 
				
			||||||
 | 
					    # Spread out crawling randomly to avoid DDoSing the link
 | 
				
			||||||
 | 
					    LinkCrawlWorker.perform_in(rand(1..59).seconds, status.id)
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  def distribute_to_followers(status)
 | 
					  def distribute_to_followers(status)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue