mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2026-03-26 07:14:39 +01:00
Follow-up to previous commit
This commit is contained in:
parent
9488df3e48
commit
1dda5e4711
|
|
@ -588,8 +588,8 @@ def filter_stderr_with_progress(process_stderr):
|
|||
print(display_line, end=end_char, file=sys.stderr, flush=True)
|
||||
last_was_progress = (progress < 1.0)
|
||||
|
||||
# skip health check polling and parser warnings
|
||||
elif 'log_server_r: request: GET /health' in line or 'No parser definition detected' in line:
|
||||
# skip noise lines
|
||||
elif 'log_server_r: request: GET /health' in line or 'No parser definition detected' in line or (last_was_progress and ('memory_seq_rm' in line or 'context checkpoint' in line)):
|
||||
continue
|
||||
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue