Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FISH-7212: avoiding creation of temporal files on local system #6569

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* only if the new code is made subject to such option by the copyright
* holder.
*/
//Portions Copyright [2022] [Payara Foundation and/or its affiliates]
//Portions Copyright [2022-2024] [Payara Foundation and/or its affiliates]
package com.sun.enterprise.admin.remote.reader;

import com.sun.enterprise.admin.remote.ParamsWithPayload;
Expand Down Expand Up @@ -94,7 +94,9 @@ public ParamsWithPayload readFrom(final InputStream is, final String contentType
if (!StringUtils.ok(boundary)) {
throw new IOException("ContentType does not define boundary");
}
final MIMEMessage mimeMessage = new MIMEMessage(is, boundary, new MIMEConfig());
MIMEConfig mimeConfig = new MIMEConfig();
mimeConfig.setMemoryThreshold(-1L);
final MIMEMessage mimeMessage = new MIMEMessage(is, boundary, mimeConfig);
//Parse
for (MIMEPart mimePart : mimeMessage.getAttachments()) {
String cd = getFirst(mimePart.getHeader("Content-Disposition"));
Expand Down