Add random delay after returning results from the database

This commit is contained in:
Antonio Scandurra 2022-11-15 08:48:16 +01:00
parent b9af2ae66e
commit 42bb5f0e9f

View file

@ -1848,7 +1848,13 @@ where
background.simulate_random_delay().await;
}
self.runtime.as_ref().unwrap().block_on(body)
let result = self.runtime.as_ref().unwrap().block_on(body);
if let Some(background) = self.background.as_ref() {
background.simulate_random_delay().await;
}
result
}
#[cfg(not(test))]