From ddf3a193261366c785357d1f33a57f4e946804ef Mon Sep 17 00:00:00 2001 From: Bugen Zhao Date: Fri, 2 Aug 2024 16:58:08 +0800 Subject: [PATCH] fix check Signed-off-by: Bugen Zhao --- src/meta/src/controller/system_param.rs | 1 - src/meta/src/manager/system_param/mod.rs | 1 - 2 files changed, 2 deletions(-) diff --git a/src/meta/src/controller/system_param.rs b/src/meta/src/controller/system_param.rs index a4b5ff239c07..4fd4b1f139be 100644 --- a/src/meta/src/controller/system_param.rs +++ b/src/meta/src/controller/system_param.rs @@ -31,7 +31,6 @@ use sea_orm::{ActiveModelTrait, DatabaseConnection, EntityTrait, TransactionTrai use tokio::sync::oneshot::Sender; use tokio::sync::RwLock; use tokio::task::JoinHandle; -use tracing::info; use crate::controller::SqlMetaStore; use crate::manager::{LocalNotification, NotificationManagerRef}; diff --git a/src/meta/src/manager/system_param/mod.rs b/src/meta/src/manager/system_param/mod.rs index d77be8e5d03d..1b76af569f9e 100644 --- a/src/meta/src/manager/system_param/mod.rs +++ b/src/meta/src/manager/system_param/mod.rs @@ -30,7 +30,6 @@ use risingwave_pb::meta::SystemParams; use tokio::sync::oneshot::Sender; use tokio::sync::RwLock; use tokio::task::JoinHandle; -use tracing::info; use self::model::SystemParamsModel; use super::NotificationManagerRef;