From a77f601a072d457512762bd0c9e2de14763e08f2 Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Fri, 31 Mar 2023 17:44:37 -0400 Subject: [PATCH] Mark drop_dataflow as stable Between 2673e8c60 and ff516c81, 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 #306. --- timely/src/worker.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/timely/src/worker.rs b/timely/src/worker.rs index 153f5c775..dc4994107 100644 --- a/timely/src/worker.rs +++ b/timely/src/worker.rs @@ -672,9 +672,7 @@ impl Worker { /// 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.