Skip to content

Commit e75853b

Browse files
authored
Merge pull request #108 from seanwevans/codex/add-tracing-and-uuid-imports
Import tracing and uuid in scheduler
2 parents ea5957d + 3447834 commit e75853b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/scheduler.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
//! [`TrainingMode`].
66
77
use crate::common::{Task, TaskType};
8+
use crate::error::AnKiError;
89
use crate::load_balancer::LoadBalancer;
9-
use std::error::Error;
1010
use std::time::Duration;
1111
use tokio::sync::mpsc;
1212
use tokio::time;
13-
use crate::error::AnKiError;
13+
use tracing::{error, info};
14+
use uuid::Uuid;
1415

1516
/// Specifies how the training tasks should be coordinated across nodes.
1617
#[derive(Clone, Copy)]

0 commit comments

Comments
 (0)