We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c6f403 commit 1a64723Copy full SHA for 1a64723
1 file changed
src/main/java/eu/openanalytics/containerproxy/ContainerProxyApplication.java
@@ -140,6 +140,9 @@ private static void setDefaultProperties(SpringApplication app ) {
140
// disable multi-part handling by Spring. We don't need this anywhere in the application.
141
// When enabled this will cause problems when proxying file-uploads to the shiny apps.
142
properties.put("spring.servlet.multipart.enabled", "false");
143
+
144
+ // disable logging of requests, since this reads part of the requests and therefore undertow is unable to correctly handle those requests
145
+ properties.put("logging.level.org.springframework.web.servlet.DispatcherServlet", "INFO");
146
app.setDefaultProperties(properties);
147
}
148
0 commit comments