Skip to content

Commit

Permalink
Fix bazel build and test on dev (TraceMachina#1123)
Browse files Browse the repository at this point in the history
Remove missing src from BUILD file and format so bazel test passes.
  • Loading branch information
zbirenbaum committed Jul 9, 2024
1 parent ba52c7f commit 5482d7f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion nativelink-scheduler/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ rust_library(
"src/scheduler_state/client_action_state_result.rs",
"src/scheduler_state/completed_action.rs",
"src/scheduler_state/matching_engine_action_state_result.rs",
"src/scheduler_state/metrics.rs",
"src/scheduler_state/mod.rs",
"src/scheduler_state/state_manager.rs",
"src/scheduler_state/workers.rs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@ use std::sync::Arc;

use async_trait::async_trait;
use nativelink_error::Error;
use nativelink_util::{
action_messages::{ActionInfo, ActionState},
task::JoinHandleDropGuard,
};
use nativelink_util::action_messages::{ActionInfo, ActionState};
use nativelink_util::task::JoinHandleDropGuard;
use tokio::sync::watch::Receiver;

use crate::operation_state_manager::ActionStateResult;
Expand Down

0 comments on commit 5482d7f

Please sign in to comment.