From 952b7f4fe8ba318525055ac4b9621635ed5723b8 Mon Sep 17 00:00:00 2001 From: Ronak Buch Date: Fri, 28 May 2021 14:25:26 -0400 Subject: [PATCH] fixup! Bump reqwest form 0.9 to 0.11 --- src/authentication.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentication.rs b/src/authentication.rs index f0acca1..43a218c 100644 --- a/src/authentication.rs +++ b/src/authentication.rs @@ -92,7 +92,7 @@ fn auth_poller(url: &str, app_sink: &CbSink) { .unwrap_or(timeout) < timeout { - if let Ok(mut response) = reqwest::blocking::get(&url) { + if let Ok(response) = reqwest::blocking::get(&url) { if response.status() != reqwest::StatusCode::ACCEPTED { let result = match response.status() { reqwest::StatusCode::OK => {