Skip to content

Commit

Permalink
Replace the usage of my_node_id() with a todo!()
Browse files Browse the repository at this point in the history
  • Loading branch information
igalshilman committed Oct 16, 2024
1 parent 3b28c35 commit 9fc3f62
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use crate::remote_query_scanner_client::RemoteScannerService;
use crate::table_providers::ScanPartition;
use datafusion::arrow::datatypes::SchemaRef;
use datafusion::execution::SendableRecordBatchStream;
use restate_core::my_node_id;
use restate_types::identifiers::{PartitionId, PartitionKey};
use restate_types::NodeId;

Expand Down Expand Up @@ -107,7 +106,7 @@ impl RemoteScannerManager {

pub fn get_partition_target_node(&self, _partition_id: PartitionId) -> NodeId {
// TODO: obtain this information somehow
my_node_id().into()
todo!()
}
}

Expand Down

0 comments on commit 9fc3f62

Please sign in to comment.