Skip to content

Commit

Permalink
fix(batch): warn when fragment mapping not found (#19105) (#19109)
Browse files Browse the repository at this point in the history
Co-authored-by: zwang28 <[email protected]>
Co-authored-by: Noel Kwan <[email protected]>
  • Loading branch information
3 people authored Oct 24, 2024
1 parent 25d97df commit 6e7c440
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/batch/src/worker_manager/worker_node_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,7 @@ impl WorkerNodeManager {
// Do nothing for placeholder fragment.
}
None => {
panic!(
"Streaming vnode mapping not found for fragment_id: {}",
fragment_id
)
tracing::warn!(fragment_id, "Streaming vnode mapping not found");
}
};
}
Expand Down

0 comments on commit 6e7c440

Please sign in to comment.