Skip to content

Commit

Permalink
Mark drop_dataflow as stable
Browse files Browse the repository at this point in the history
Between 2673e8c and ff516c8, drop_dataflow appears to be working
well, based on testing in Materialize
(MaterializeInc/materialize#18442). So remove the "public beta" warning
from the docstring.

Fix TimelyDataflow#306.
  • Loading branch information
benesch committed Mar 31, 2023
1 parent 134842a commit a77f601
Showing 1 changed file with 1 addition and 3 deletions.
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

0 comments on commit a77f601

Please sign in to comment.