We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c7447f commit d4e7d70Copy full SHA for d4e7d70
1 file changed
src/main/java/eu/openanalytics/containerproxy/ContainerProxyApplication.java
@@ -136,6 +136,10 @@ private static void setDefaultProperties(SpringApplication app ) {
136
137
// use in-memory session storage by default. Can be overwritten in application.yml
138
properties.put("spring.session.store-type", "none");
139
+
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
app.setDefaultProperties(properties);
144
}
145
0 commit comments