Skip to content

Commit 9de5717

Browse files
authored
fix
1 parent e5c6344 commit 9de5717

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightllm/utils/health_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ async def check_timeout(results_generator):
8080
health_obj.set_health()
8181
except asyncio.TimeoutError:
8282
health_obj.set_unhealth()
83-
logger.warning("Health check timeout! The failure count is: %s", str(health_obj._failure_count))
83+
logger.warning(f"Health check timeout! The failure count is: {str(health_obj._failure_count)}")
8484
return health_obj.is_health()
8585
except Exception as e:
8686
logger.exception(str(e))

0 commit comments

Comments
 (0)