We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8464f commit 3416649Copy full SHA for 3416649
lib/bindings/python/rust/llm/block_manager/vllm/connector/leader.rs
@@ -626,15 +626,15 @@ pub fn parse_kvbm_metrics_port() -> u16 {
626
Ok(val) => match val.trim().parse::<u16>() {
627
Ok(port) => port,
628
Err(_) => {
629
- tracing::error!(
+ tracing::warn!(
630
"[kvbm] Invalid DYN_KVBM_METRICS_PORT='{}', falling back to 6880",
631
val
632
);
633
6880
634
}
635
},
636
637
- tracing::error!("DYN_KVBM_METRICS_PORT not present or couldn’t be interpreted.");
+ tracing::warn!("DYN_KVBM_METRICS_PORT not present or couldn’t be interpreted, falling back to 6880");
638
639
640
0 commit comments