Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Cifko committed Apr 5, 2024
1 parent f3d1b29 commit 6419af3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion atoma-inference/src/model_thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ where
response_sender,
} = command;

// TODO: Implement node authorization
// if !request.is_node_authorized(&public_key) {
// error!("Current node, with verification key = {:?} is not authorized to run request with id = {}", public_key, request.request_id());
// continue;
Expand Down Expand Up @@ -118,7 +119,6 @@ impl ModelThreadDispatcher {

let (model_sender, model_receiver) = mpsc::channel::<ModelThreadCommand>();
let model_name = model_config.model_id().clone();
println!("model_name {model_name}");
model_senders.insert(model_name.clone(), model_sender.clone());

let join_handle = std::thread::spawn(move || {
Expand Down

0 comments on commit 6419af3

Please sign in to comment.