mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-04 09:56:28 +00:00 
			
		
		
		
	Merge tag 'v1.8.2' into release-v1.9.0
This commit is contained in:
		@@ -40,8 +40,9 @@ pub struct Permit {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
impl Drop for Permit {
 | 
					impl Drop for Permit {
 | 
				
			||||||
    fn drop(&mut self) {
 | 
					    fn drop(&mut self) {
 | 
				
			||||||
 | 
					        let sender = self.sender.clone();
 | 
				
			||||||
        // if the channel is closed then the whole instance is down
 | 
					        // if the channel is closed then the whole instance is down
 | 
				
			||||||
        let _ = futures::executor::block_on(self.sender.send(()));
 | 
					        std::mem::drop(tokio::spawn(async move { sender.send(()).await }));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user