Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
resolve fmt
Signed-off-by: richardhuo-nv <[email protected]>
  • Loading branch information
richardhuo-nv committed Oct 22, 2025
commit 37189e7122d40d55840d54fe20fa6d96d1d7a1c6
4 changes: 3 additions & 1 deletion lib/llm/src/block_manager/distributed/leader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ impl KvbmLeaderConfig {

pub fn sanity_check(&self) -> anyhow::Result<()> {
if self.leader_pub_url == self.leader_ack_url {
anyhow::bail!("leader_pub_url and leader_ack_url must differ (same endpoint would fail to bind).");
anyhow::bail!(
"leader_pub_url and leader_ack_url must differ (same endpoint would fail to bind)."
);
}
let cpu = &self.host_blocks_config;
let disk = &self.disk_blocks_config;
Expand Down