Skip to content

Commit

Permalink
fix(11523): don't include stacktrace in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedld committed Jul 29, 2024
1 parent 9a77f90 commit bf07b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/execution/src/memory_pool/pool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ impl<I: MemoryPool> MemoryPool for TrackConsumersPool<I> {
.map_err(|e| match e {
DataFusionError::ResourcesExhausted(e) => {
DataFusionError::ResourcesExhausted(
e.to_owned() + ". " + &self.report_top(),
e.to_string() + ". " + &self.report_top(),
)
}
_ => e,
Expand Down

0 comments on commit bf07b81

Please sign in to comment.