Skip to content

Commit 461089a

Browse files
authored
[Bugfix] Fix a log error in chunked prefill (#6694)
1 parent 71950af commit 461089a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ def __init__(self,
814814
if enable_chunked_prefill:
815815
logger.info(
816816
"Chunked prefill is enabled with max_num_batched_tokens=%d.",
817-
max_num_batched_tokens)
817+
self.max_num_batched_tokens)
818818

819819
self.max_num_seqs = max_num_seqs
820820
self.max_model_len = max_model_len

0 commit comments

Comments
 (0)