diff --git a/api/app_factory.py b/api/app_factory.py index 1c886ac5c7..d63aa83207 100644 --- a/api/app_factory.py +++ b/api/app_factory.py @@ -62,27 +62,27 @@ def initialize_extensions(app: DifyApp): ) extensions = [ - ext_timezone, - ext_logging, - ext_warnings, - ext_import_modules, - ext_set_secretkey, - ext_compress, - ext_code_based_extension, - ext_database, ext_app_metrics, - ext_migrate, - ext_redis, - ext_storage, + ext_blueprints, ext_celery, + ext_code_based_extension, + ext_commands, + ext_compress, + ext_database, + ext_hosting_provider, + ext_import_modules, + ext_logging, ext_login, ext_mail, - ext_hosting_provider, - ext_sentry, - ext_proxy_fix, - ext_blueprints, - ext_commands, + ext_migrate, ext_otel, + ext_proxy_fix, + ext_redis, + ext_sentry, + ext_set_secretkey, + ext_storage, + ext_timezone, + ext_warnings, ] for ext in extensions: short_name = ext.__name__.split(".")[-1]