mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-10 07:12:54 +00:00
chore: no logging when init table_flow cache if empty (#6785)
chore: no logging Signed-off-by: discord9 <discord9@163.com>
This commit is contained in:
10
src/common/meta/src/cache/flow/table_flownode.rs
vendored
10
src/common/meta/src/cache/flow/table_flownode.rs
vendored
@@ -91,10 +91,12 @@ fn init_factory(table_flow_manager: TableFlowManagerRef) -> Initializer<TableId,
|
||||
.map(Arc::new)
|
||||
.map(Some)
|
||||
.inspect(|set| {
|
||||
info!(
|
||||
"Initialized table_flownode cache for table_id: {}, set: {:?}",
|
||||
table_id, set
|
||||
);
|
||||
if set.as_ref().map(|s| !s.is_empty()).unwrap_or(false) {
|
||||
info!(
|
||||
"Initialized table_flownode cache for table_id: {}, set: {:?}",
|
||||
table_id, set
|
||||
);
|
||||
};
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user