From 6d123c297fa50a616771f88eb5bdb0e4784815b8 Mon Sep 17 00:00:00 2001 From: "ivanov.denis" Date: Wed, 24 Jul 2024 19:51:11 +0300 Subject: [PATCH] SUPPORT-8438 --- backend/src/main/java/WebAppInitializer.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/src/main/java/WebAppInitializer.java b/backend/src/main/java/WebAppInitializer.java index a6f8f89b..a0fc7d01 100644 --- a/backend/src/main/java/WebAppInitializer.java +++ b/backend/src/main/java/WebAppInitializer.java @@ -13,11 +13,11 @@ import org.springframework.web.util.IntrospectorCleanupListener; */ public class WebAppInitializer extends AbstractAnnotationConfigDispatcherServletInitializer { - @Value("${file.config.max_file_size}") + @Value("${ervu.fileupload.max_file_size}") private int maxFileSize; - @Value("${file.config.max_request_size}") + @Value("${ervu.fileupload.max_request_size}") private int maxRequestSize; - @Value("${file.config.file_size_threshold}") + @Value("${ervu.fileupload.file_size_threshold}") private int fileSizeThreshold; public void onStartup(ServletContext servletContext) throws ServletException {