Skip to content

Commit 51a52d4

Browse files
committed
resolve comments
Signed-off-by: richardhuo-nv <[email protected]>
1 parent e1137de commit 51a52d4

File tree

1 file changed

+2
-2
lines changed
  • lib/bindings/python/rust/llm/block_manager/vllm/connector

1 file changed

+2
-2
lines changed

lib/bindings/python/rust/llm/block_manager/vllm/connector/leader.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,15 +626,15 @@ pub fn parse_kvbm_metrics_port() -> u16 {
626626
Ok(val) => match val.trim().parse::<u16>() {
627627
Ok(port) => port,
628628
Err(_) => {
629-
tracing::error!(
629+
tracing::warn!(
630630
"[kvbm] Invalid DYN_KVBM_METRICS_PORT='{}', falling back to 6880",
631631
val
632632
);
633633
6880
634634
}
635635
},
636636
Err(_) => {
637-
tracing::error!("DYN_KVBM_METRICS_PORT not present or couldn’t be interpreted.");
637+
tracing::warn!("DYN_KVBM_METRICS_PORT not present or couldn’t be interpreted, falling back to 6880");
638638
6880
639639
}
640640
}

0 commit comments

Comments
 (0)