Skip to content

Commit

Permalink
revert junk
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechsromek committed Dec 20, 2024
1 parent 43b91cc commit dec5b2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iris-mpc/src/bin/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1012,13 +1012,13 @@ async fn server_main(config: Config) -> eyre::Result<()> {
.map(|result| result.map(IrisSource::S3))
.boxed();

let stream_db_modified = store
let stream_db = store
.stream_irises_par(Some(min_last_modified_at), parallelism)
.await
.map(|result| result.map(IrisSource::DB))
.boxed();
select_all(vec![stream_s3, stream_db, stream_db_modified])

select_all(vec![stream_s3, stream_db])
}
false => {
tracing::info!("S3 importer disabled. Fetching only from db");
Expand Down

0 comments on commit dec5b2a

Please sign in to comment.