Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
189 changes: 47 additions & 142 deletions packages/cubejs-backend-native/Cargo.lock

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions packages/cubejs-backend-native/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![feature(async_closure)]
#![feature(thread_id_value)]
#![allow(clippy::result_large_err)]

#[cfg(feature = "python")]
extern crate findshlibs;

pub mod auth;
Expand Down
5 changes: 3 additions & 2 deletions packages/cubejs-backend-native/src/template/workers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ impl JinjaEngineWorker {
);
} else {
trace!(
"Closing jinja thread, id: {}, threadId: {}",
"Closing jinja thread, id: {}, threadId: {:?}",
id,
std::thread::current().id().as_u64()
// TODO: Use as_u64 when it will be stable - https://github.com/rust-lang/rust/issues/67939
std::thread::current().id()
);

return;
Expand Down
Loading
Loading