From 382b94aa893aa05a5c5ed41cda1cf2fcd0ded141 Mon Sep 17 00:00:00 2001 From: Sohum Banerjea Date: Wed, 23 Aug 2023 16:52:14 +1000 Subject: [PATCH] Correct spelling mistake in jetstream pull consumer --- async-nats/src/jetstream/consumer/pull.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/async-nats/src/jetstream/consumer/pull.rs b/async-nats/src/jetstream/consumer/pull.rs index 02f3ac046..c6a711304 100644 --- a/async-nats/src/jetstream/consumer/pull.rs +++ b/async-nats/src/jetstream/consumer/pull.rs @@ -398,7 +398,7 @@ impl futures::Stream for Batch { Poll::Ready(maybe_message) => match maybe_message { Some(message) => match message.status.unwrap_or(StatusCode::OK) { StatusCode::TIMEOUT => { - debug!("recived timeout. Iterator done."); + debug!("received timeout. Iterator done."); self.terminated = true; Poll::Ready(None) }