Skip to content

Commit 2e866b1

Browse files
authored
Default MLServer debug setting to False (#2307)
This means that by default we no longer write the uvicorn accesslog to the log (stdout). It makes sense to move to the new default, as production settings will not want the verbosity that comes with "debug: True"
1 parent 5f28474 commit 2e866b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlserver/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ class Settings(BaseSettings):
165165
extra="ignore",
166166
)
167167

168-
debug: bool = True
168+
debug: bool = False
169169

170170
parallel_workers: int = DEFAULT_PARALLEL_WORKERS
171171
"""When parallel inference is enabled, number of workers to run inference

0 commit comments

Comments
 (0)