chore(app_generate_service): Rename app_model to app

Signed-off-by: -LAN- <laipz8200@outlook.com>
pull/22847/head
-LAN- 7 months ago
parent 5354ebc2f8
commit 5e032c3f42
No known key found for this signature in database
GPG Key ID: 6BA0D108DED011FF

@ -129,7 +129,7 @@ class AppGenerateService:
rate_limit.exit(request_id) rate_limit.exit(request_id)
@staticmethod @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. 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). A value of 0 means infinite (no limit).
Args: Args:
app_model: The App model instance app: The App model instance
Returns: Returns:
The maximum number of active requests allowed 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 config_limit = dify_config.APP_MAX_ACTIVE_REQUESTS
# Filter out infinite (0) values and return the minimum, or 0 if both are infinite # Filter out infinite (0) values and return the minimum, or 0 if both are infinite

Loading…
Cancel
Save