NIFI-1732 set jetty timeout to Long.MAX_VALUE

This closes #337
This commit is contained in:
Pierre Villard 2016-04-08 12:04:39 +02:00 committed by jpercivall
parent e5925ff4b3
commit 63a0d0c211
1 changed files with 1 additions and 0 deletions

View File

@ -389,6 +389,7 @@ public class HandleHttpRequest extends AbstractProcessor {
// Right now, that information, though, is only in the ProcessSession, not the ProcessContext,
// so it is not known to us. Should see if it can be added to the ProcessContext.
final AsyncContext async = baseRequest.startAsync();
async.setTimeout(Long.MAX_VALUE); // timeout is handled by HttpContextMap
final boolean added = containerQueue.offer(new HttpRequestContainer(request, response, async));
if (added) {