Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: heartbeat task&peer lookup in proc #4179

Merged
merged 11 commits into from
Jun 24, 2024
Prev Previous commit
Next Next commit
fix: drop flow test
  • Loading branch information
discord9 committed Jun 24, 2024
commit 5ffeb292edb0f62bee129578547fe7226a567784
4 changes: 2 additions & 2 deletions src/common/meta/src/test_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use crate::kv_backend::KvBackendRef;
use crate::node_manager::{
Datanode, DatanodeRef, Flownode, FlownodeRef, NodeManager, NodeManagerRef,
};
use crate::peer::{DummyPeerLookupService, Peer};
use crate::peer::{Peer, StandalonePeerLookupService};
use crate::region_keeper::MemoryRegionKeeper;
use crate::sequence::SequenceBuilder;
use crate::wal_options_allocator::WalOptionsAllocator;
Expand Down Expand Up @@ -180,6 +180,6 @@ pub fn new_ddl_context_with_kv_backend(
table_metadata_manager,
flow_metadata_allocator,
flow_metadata_manager,
peer_lookup_service: Arc::new(DummyPeerLookupService {}),
peer_lookup_service: Arc::new(StandalonePeerLookupService),
}
}