Skip to content

Commit fb8cede

Browse files
committed
flag
1 parent 0e5988b commit fb8cede

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

components/src/dynamo/vllm/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ def overwrite_args(config):
461461
# skip tokenizer initialisation. Setting this to **False** avoids
462462
# a NoneType error when the processor accesses the tokenizer.
463463
"skip_tokenizer_init": False,
464-
"disable_log_requests": True,
464+
"enable_log_requests": False,
465465
"disable_log_stats": False,
466466
}
467467

components/src/dynamo/vllm/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def setup_vllm_engine(config, stat_logger=None):
328328
vllm_config=vllm_config,
329329
usage_context=usage_context,
330330
stat_loggers=factory,
331-
disable_log_requests=engine_args.disable_log_requests,
331+
enable_log_requests=engine_args.enable_log_requests,
332332
disable_log_stats=engine_args.disable_log_stats,
333333
)
334334
if ENABLE_LMCACHE:

examples/multimodal/components/worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def setup_vllm_engine(self, component: Component, endpoint: Endpoint):
142142
vllm_config=vllm_config,
143143
usage_context=usage_context,
144144
stat_loggers=[self.stats_logger],
145-
disable_log_requests=self.engine_args.disable_log_requests,
145+
enable_log_requests=self.engine_args.enable_log_requests,
146146
disable_log_stats=self.engine_args.disable_log_stats,
147147
)
148148

examples/multimodal/utils/args.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def overwrite_args(config):
155155
defaults = {
156156
"task": "generate",
157157
"skip_tokenizer_init": False,
158-
"disable_log_requests": True,
158+
"enable_log_requests": False,
159159
"enable_prefix_caching": True,
160160
# KV routing relies on logging KV metrics
161161
"disable_log_stats": False,

0 commit comments

Comments
 (0)