Skip to content

Commit

Permalink
revert fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhao-su committed Jun 17, 2024
1 parent 36600d6 commit 00d43ed
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/meta/src/controller/fragment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ impl CatalogController {
/// collected
pub async fn load_all_actors(&self) -> MetaResult<ActorInfos> {
let inner = self.inner.read().await;
let actor_info: Vec<(ActorId, WorkerId, FragmentId, i32, I32Array)> = Actor::find()
let actor_info: Vec<(ActorId, WorkerId, FragmentId, i32, Vec<i32>)> = Actor::find()
.select_only()
.column(actor::Column::ActorId)
.column(actor::Column::WorkerId)
Expand All @@ -880,7 +880,6 @@ impl CatalogController {
let mut fragment_infos = HashMap::new();

for (actor_id, worker_id, fragment_id, type_mask, state_table_ids) in actor_info {
let state_table_ids = state_table_ids.into_inner();
match fragment_infos.entry(fragment_id as crate::model::FragmentId) {
Entry::Occupied(mut entry) => {
let info: &mut InflightFragmentInfo = entry.get_mut();
Expand Down

0 comments on commit 00d43ed

Please sign in to comment.