We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c6344 commit 9de5717Copy full SHA for 9de5717
lightllm/utils/health_check.py
@@ -80,7 +80,7 @@ async def check_timeout(results_generator):
80
health_obj.set_health()
81
except asyncio.TimeoutError:
82
health_obj.set_unhealth()
83
- logger.warning("Health check timeout! The failure count is: %s", str(health_obj._failure_count))
+ logger.warning(f"Health check timeout! The failure count is: {str(health_obj._failure_count)}")
84
return health_obj.is_health()
85
except Exception as e:
86
logger.exception(str(e))
0 commit comments