job: log success when finished

rocket-stable
Antoine Martin 2021-03-29 20:11:37 +02:00
parent a3fbef6fc6
commit 7c21d65920
1 changed files with 5 additions and 1 deletions

View File

@ -159,6 +159,10 @@ impl Job {
self.update_repo()?;
}
self.update_mirrors()
self.update_mirrors(config)?;
info!("Done processing job {}!", self.repo.full_name);
Ok(())
}
}