NIFI-705 Preventing the processor from initializing each time it is waiting for the request.

This commit is contained in:
Aldrin Piri 2015-07-08 13:12:04 -04:00
parent 3125036d3f
commit df92dff8bb
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ public class TestHandleHttpRequest {
while ( runner.getFlowFilesForRelationship(HandleHttpRequest.REL_SUCCESS).isEmpty() ) {
// process the request.
runner.run(1, false);
runner.run(1, false, false);
}
runner.assertAllFlowFilesTransferred(HandleHttpRequest.REL_SUCCESS, 1);