@@ -496,7 +496,7 @@ class NormalTaskSubmitterTest : public testing::Test {
496496 rate_limiter,
497497 [](const ObjectID &object_id) { return rpc::TensorTransport::OBJECT_STORE; },
498498 boost::asio::steady_timer (io_context),
499- fake_scheduler_placement_time_s_histogram_ );
499+ fake_scheduler_placement_time_ms_histogram_ );
500500 }
501501
502502 NodeID local_node_id;
@@ -513,7 +513,7 @@ class NormalTaskSubmitterTest : public testing::Test {
513513 std::unique_ptr<MockLeasePolicy> lease_policy;
514514 MockLeasePolicy *lease_policy_ptr = nullptr ;
515515 instrumented_io_context io_context;
516- ray::observability::FakeHistogram fake_scheduler_placement_time_s_histogram_ ;
516+ ray::observability::FakeHistogram fake_scheduler_placement_time_ms_histogram_ ;
517517};
518518
519519TEST_F (NormalTaskSubmitterTest, TestLocalityAwareSubmitOneTask) {
@@ -1433,7 +1433,7 @@ void TestSchedulingKey(const std::shared_ptr<CoreWorkerMemoryStore> store,
14331433 const TaskSpecification &same2,
14341434 const TaskSpecification &different) {
14351435 rpc::Address address;
1436- ray::observability::FakeHistogram fake_scheduler_placement_time_s_histogram_ ;
1436+ ray::observability::FakeHistogram fake_scheduler_placement_time_ms_histogram_ ;
14371437 auto local_node_id = NodeID::FromRandom ();
14381438 auto raylet_client = std::make_shared<MockRayletClient>();
14391439 auto raylet_client_pool = std::make_shared<rpc::RayletClientPool>(
@@ -1462,7 +1462,7 @@ void TestSchedulingKey(const std::shared_ptr<CoreWorkerMemoryStore> store,
14621462 std::make_shared<StaticLeaseRequestRateLimiter>(1 ),
14631463 [](const ObjectID &object_id) { return rpc::TensorTransport::OBJECT_STORE; },
14641464 boost::asio::steady_timer (io_context),
1465- fake_scheduler_placement_time_s_histogram_ );
1465+ fake_scheduler_placement_time_ms_histogram_ );
14661466
14671467 submitter.SubmitTask (same1);
14681468 submitter.SubmitTask (same2);
0 commit comments