diff options
author | Teddy Wing | 2021-06-13 19:58:44 +0200 |
---|---|---|
committer | Teddy Wing | 2021-06-13 19:58:44 +0200 |
commit | 8972b3d088f8c2b9ac78f35f9436639eb49f46db (patch) | |
tree | 704ae54199070b6327177502b5094387c4b0179f /src/main.rs | |
parent | 7a9173a5c02248ac61ed657d9ae73b5b3076d154 (diff) | |
download | reflectub-8972b3d088f8c2b9ac78f35f9436639eb49f46db.tar.bz2 |
run(): Remove limit to two repositories used for testing
I artificially limited the number of repositories processed to two for
testing so that I wouldn't download an mirror all of my repositories
while testing the program. Now that things seem to be working, remove
this artificial limit.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 52820a8..d256e1b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -118,7 +118,7 @@ fn run() -> Result<(), MultiError> { db.create() .context("unable to create database")?; - let errors: Vec<_> = repos[..2] + let errors: Vec<_> = repos .par_iter() .map(|repo| { dbg!("Thread", std::thread::current().id()); |