Skip to content

Commit 4fc1903

Browse files
committed
Tiny conditional compilation fix
1 parent 9f1f7ff commit 4fc1903

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/subspace-farmer/src/utils.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ use std::task::{Context, Poll};
1818
use std::{io, thread};
1919
use tokio::runtime::Handle;
2020
use tokio::task;
21-
use tracing::{debug, warn};
21+
use tracing::debug;
22+
#[cfg(feature = "numa")]
23+
use tracing::warn;
2224

2325
/// Joins async join handle on drop
2426
pub struct AsyncJoinOnDrop<T> {

0 commit comments

Comments
 (0)