diff --git a/fastdeploy/entrypoints/openai/api_server.py b/fastdeploy/entrypoints/openai/api_server.py index c6a9249fa..77576441c 100644 --- a/fastdeploy/entrypoints/openai/api_server.py +++ b/fastdeploy/entrypoints/openai/api_server.py @@ -295,7 +295,7 @@ def acquire_connection(): current_count = connection_counter_shm.value[0] if current_count >= MAX_CONCURRENT_CONNECTIONS: api_server_logger.info( - f"Reach max request concurrency: {current_count}/{MAX_CONCURRENT_CONNECTIONS}" + f"Reached max request concurrency: {current_count}/{MAX_CONCURRENT_CONNECTIONS}" ) raise HTTPException( status_code=429,