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

Mark drop_dataflow as stable #519

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions timely/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -672,9 +672,7 @@ impl<A: Allocate> Worker<A> {
/// Drops an identified dataflow.
///
/// This method removes the identified dataflow, which will no longer be scheduled.
/// Various other resources will be cleaned up, though the method is currently in
/// public beta rather than expected to work. Please report all crashes and unmet
/// expectations!
/// Various other resources will be cleaned up.
pub fn drop_dataflow(&mut self, dataflow_identifier: usize) {
if let Some(mut entry) = self.dataflows.borrow_mut().remove(&dataflow_identifier) {
// Garbage collect channel_id to path information.
Expand Down