Skip to content

Commit

Permalink
Bug fix: cargo rerun websocket-url
Browse files Browse the repository at this point in the history
Broke in #3116
  • Loading branch information
emilk committed Aug 30, 2023
1 parent e7b56ae commit 11d5fea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions crates/rerun/src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ use std::path::{Path, PathBuf};
use anyhow::Context as _;
use clap::Subcommand;
use itertools::Itertools;
use rayon::prelude::{IntoParallelIterator, ParallelIterator};

use re_data_source::DataSource;
use re_log_types::{LogMsg, PythonVersion};
Expand Down Expand Up @@ -472,7 +471,7 @@ async fn run_impl(
}

data_sources
.into_par_iter()
.into_iter()
.map(|data_source| data_source.stream(None))
.collect::<Result<Vec<_>, _>>()?
};
Expand Down

0 comments on commit 11d5fea

Please sign in to comment.