Remove size limit on async static content.
This commit is contained in:
Greg Wilkins 2021-02-05 14:50:14 +01:00 committed by GitHub
parent a26ad6d7ea
commit f768e2ed68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -691,7 +691,7 @@ public class ResourceService
putHeaders(response, content, Response.USE_KNOWN_CONTENT_LENGTH); putHeaders(response, content, Response.USE_KNOWN_CONTENT_LENGTH);
// write the content asynchronously if supported // write the content asynchronously if supported
if (request.isAsyncSupported() && content.getContentLengthValue() > response.getBufferSize()) if (request.isAsyncSupported())
{ {
final AsyncContext context = request.startAsync(); final AsyncContext context = request.startAsync();
context.setTimeout(0); context.setTimeout(0);