Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/6178#discussion_r196557260 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/HandlerRequest.java --- @@ -39,15 +41,21 @@ public class HandlerRequest<R extends RequestBody, M extends MessageParameters> { private final R requestBody; + private final FileUploads uploadedFiles; --- End diff -- This could also be a `Collection<File>`
---