Unverified Commit 88e3779e authored by Hongkuan Zhou's avatar Hongkuan Zhou Committed by GitHub
Browse files

fix: fix max_local_prefill_length not being printed out in disagg router log (#628)

parent e7a49b03
......@@ -41,6 +41,6 @@ class PyDisaggregatedRouter:
and queue_size < self.max_prefill_queue_size
)
logger.info(
f"Remote prefill: {decision} (prefill length: {absolute_prefill_length}/{prompt_length}, prefill queue size: {queue_size}/{self.max_prefill_queue_size})"
f"Remote prefill: {decision} (prefill length: {absolute_prefill_length}/{self.max_local_prefill_length}, prefill queue size: {queue_size}/{self.max_prefill_queue_size})"
)
return decision
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment