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 e1137de commit 51a52d4Copy full SHA for 51a52d4
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