aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorSun Zhe <31067185+ZheSun88@users.noreply.github.com>2018-11-06 17:04:33 +0200
committerGitHub <noreply@github.com>2018-11-06 17:04:33 +0200
commitabcd11db25e99d7fba6918a38dc6034c202d7b2a (patch)
treea11fb979b2dcd92b5665c79dd888a904aac3cb64 /server
parentb20a9a83184c6ef37173e2d9df1206eea5ceacf9 (diff)
downloadvaadin-framework-abcd11db25e99d7fba6918a38dc6034c202d7b2a.tar.gz
vaadin-framework-abcd11db25e99d7fba6918a38dc6034c202d7b2a.zip
Update framework to use jetty-server 9.4 (#11272)
Fix upload issue
Diffstat (limited to 'server')
-rw-r--r--server/src/main/java/com/vaadin/server/communication/FileUploadHandler.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/server/src/main/java/com/vaadin/server/communication/FileUploadHandler.java b/server/src/main/java/com/vaadin/server/communication/FileUploadHandler.java
index 90ff4b8799..addf032a83 100644
--- a/server/src/main/java/com/vaadin/server/communication/FileUploadHandler.java
+++ b/server/src/main/java/com/vaadin/server/communication/FileUploadHandler.java
@@ -617,6 +617,7 @@ public class FileUploadHandler implements RequestHandler {
} finally {
session.unlock();
}
+ return true;
// Note, we are not throwing interrupted exception forward as it is
// not a terminal level error like all other exception.
} catch (final Exception e) {