Unverified Commit 144d9b7c authored by Tomas Ruiz's avatar Tomas Ruiz Committed by GitHub
Browse files

[Benchmarks] Reduce ready checker log verbosity (#34349)


Signed-off-by: default avatarTomas Ruiz <tomas.ruiz.te@gmail.com>
parent 83e26c83
...@@ -66,7 +66,8 @@ async def wait_for_endpoint( ...@@ -66,7 +66,8 @@ async def wait_for_endpoint(
pbar.close() pbar.close()
return output return output
else: else:
logger.warning("Endpoint is not ready. Error='%s'", output.error) err_last_line = str(output.error).rstrip().rsplit("\n", 1)[-1]
logger.warning("Endpoint is not ready. Error='%s'", err_last_line)
except aiohttp.ClientConnectorError: except aiohttp.ClientConnectorError:
pass pass
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment