Skip to content

Commit

Permalink
backport
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 26, 2023
1 parent 4665528 commit eba29b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions crates/re_log_types/src/data_table_batcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ pub enum DataTableBatcherError {
ParseConfig {
name: &'static str,
value: String,
err: Box<dyn std::error::Error>,
err: Box<dyn std::error::Error + Send + Sync>,
},

/// Error spawning one of the background threads.
#[error("Failed to spawn background thread '{name}': {err}")]
SpawnThread {
name: &'static str,
err: Box<dyn std::error::Error>,
err: Box<dyn std::error::Error + Send + Sync>,
},
}

Expand Down
4 changes: 3 additions & 1 deletion crates/re_log_types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ pub use self::time_range::{TimeRange, TimeRangeF};
pub use self::time_real::TimeReal;

#[cfg(not(target_arch = "wasm32"))]
pub use self::data_table_batcher::{DataTableBatcher, DataTableBatcherConfig};
pub use self::data_table_batcher::{
DataTableBatcher, DataTableBatcherConfig, DataTableBatcherError,
};

pub mod external {
pub use arrow2;
Expand Down

0 comments on commit eba29b7

Please sign in to comment.