From 175eacfac37cbe05911fa2d19dee7e7fa38a5c2e Mon Sep 17 00:00:00 2001 From: mat Date: Fri, 1 Dec 2023 22:51:27 -0600 Subject: rename add_with_exponential_backoff to add_and_retry_forever --- azalea/examples/testbot.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'azalea/examples') diff --git a/azalea/examples/testbot.rs b/azalea/examples/testbot.rs index 74ecfd8a..aa47d5a2 100644 --- a/azalea/examples/testbot.rs +++ b/azalea/examples/testbot.rs @@ -376,9 +376,7 @@ async fn swarm_handle( SwarmEvent::Disconnect(account) => { println!("bot got kicked! {}", account.username); tokio::time::sleep(Duration::from_secs(5)).await; - swarm - .add_with_exponential_backoff(account, State::default()) - .await; + swarm.add_and_retry_forever(account, State::default()).await; } SwarmEvent::Chat(m) => { println!("swarm chat message: {}", m.message().to_ansi()); -- cgit v1.2.3