From a8ac57717c09ed8df016febdc4f408f5010692de Mon Sep 17 00:00:00 2001 From: jurriaan Date: Thu, 24 Oct 2024 12:08:56 +0200 Subject: [PATCH 1/2] fix(hubble): minimal change based on 3027e5f --- hubble/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hubble/src/main.rs b/hubble/src/main.rs index 28b351e2e0..2c739271f8 100644 --- a/hubble/src/main.rs +++ b/hubble/src/main.rs @@ -1,6 +1,6 @@ #![feature(more_qualified_paths)] #![feature(try_blocks)] -#![allow(clippy::manual_async_fn, clippy::needless_lifetimes)] +#![allow(clippy::needless_lifetimes, clippy::manual_async_fn)] #![feature(async_closure)] use std::time::Duration; From f947bb0214218a1f06e257afc40633062c6d2635 Mon Sep 17 00:00:00 2001 From: jurriaan Date: Thu, 24 Oct 2024 16:21:26 +0200 Subject: [PATCH 2/2] fix(hubble): minimal change based on 3027e5f - extra underscore --- hubble/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hubble/src/main.rs b/hubble/src/main.rs index 2c739271f8..c65fa5f61c 100644 --- a/hubble/src/main.rs +++ b/hubble/src/main.rs @@ -74,7 +74,7 @@ async fn main() -> color_eyre::eyre::Result<()> { let mut interval = tokio::time::interval(Duration::from_secs(10 * 60)); interval.tick().await; loop { - info!("updating_tokens"); + info!("updating__tokens"); token_list::update_tokens(db.clone(), args.tokens_urls.clone()).await?; interval.tick().await; }