From 5e032c3f4207c7d70df39c355af460f68ce30d92 Mon Sep 17 00:00:00 2001 From: -LAN- Date: Wed, 23 Jul 2025 18:26:11 +0800 Subject: [PATCH] chore(app_generate_service): Rename app_model to app Signed-off-by: -LAN- --- api/services/app_generate_service.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/services/app_generate_service.py b/api/services/app_generate_service.py index c853855288..6f7e705b52 100644 --- a/api/services/app_generate_service.py +++ b/api/services/app_generate_service.py @@ -129,7 +129,7 @@ class AppGenerateService: rate_limit.exit(request_id) @staticmethod - def _get_max_active_requests(app_model: App) -> int: + def _get_max_active_requests(app: App) -> int: """ Get the maximum number of active requests allowed for an app. @@ -137,12 +137,12 @@ class AppGenerateService: A value of 0 means infinite (no limit). Args: - app_model: The App model instance + app: The App model instance Returns: The maximum number of active requests allowed """ - app_limit = app_model.max_active_requests or 0 + app_limit = app.max_active_requests or 0 config_limit = dify_config.APP_MAX_ACTIVE_REQUESTS # Filter out infinite (0) values and return the minimum, or 0 if both are infinite