diff --git a/src/pharos.rs b/src/pharos.rs index ed8c911..c2d2003 100644 --- a/src/pharos.rs +++ b/src/pharos.rs @@ -266,14 +266,11 @@ impl Sink for Pharos where Event: Clone + 'static + Send { match Pin::new( obs ).poll_flush( cx ) { - Poll::Pending => pending = true , - Poll::Ready(Ok()) => continue , + Poll::Pending => {} , + Poll::Ready(Ok()) => {} , Poll::Ready(Err(_)) => { - this.free_slots.push( i ); - - *opt = None; } } }