From 5110de08e384206a6d6920255e323e17ee4e85ca Mon Sep 17 00:00:00 2001 From: Pierrick HYMBERT Date: Fri, 23 Feb 2024 02:31:44 +0100 Subject: [PATCH] server: tests: fix coloring console --- examples/server/tests/features/steps/steps.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/server/tests/features/steps/steps.py b/examples/server/tests/features/steps/steps.py index a5a516252..7375fcba9 100644 --- a/examples/server/tests/features/steps/steps.py +++ b/examples/server/tests/features/steps/steps.py @@ -589,8 +589,8 @@ async def wait_for_health_status(context, # Sometimes health requests are triggered after completions are predicted if expected_http_status_code == 503: if len(context.completions) == 0: - print("\x1b[5;37;43WARNING: forcing concurrents completions tasks," - " busy health check missed\x1b[0m") + print("\x1b[5;37;43mWARNING: forcing concurrents completions tasks," + " busy health check missed, probably too fast inference\x1b[0m") n_completions = await gather_concurrent_completions_tasks(context) if n_completions > 0: return