Skip to content
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