TODO: The real delay
(&self, rid: String)
| 324 | |
| 325 | /// TODO: The real delay |
| 326 | async fn recur_verify(&self, rid: String) -> Result<VerifyResult, Error> { |
| 327 | use std::time::Duration; |
| 328 | |
| 329 | trace!("Run verify recursion..."); |
| 330 | std::thread::sleep(Duration::from_micros(3000)); |
| 331 | |
| 332 | let json: VerifyResult = self |
| 333 | .resp_to_json(self.clone().0.verify_result(rid.clone()).await?) |
| 334 | .await?; |
| 335 | |
| 336 | Ok(json) |
| 337 | } |
| 338 | |
| 339 | /// Exec problem filter —— Test or Submit |
| 340 | pub async fn exec_problem( |
no test coverage detected