From 3a4c3ccbaae6f443910a264ccc57f48acd21d713 Mon Sep 17 00:00:00 2001 From: Mark Payne Date: Mon, 11 Feb 2019 11:51:36 -0500 Subject: [PATCH] NIFI-6015: This closes #3300. Updated unit test to sleep for 10 milliseconds before adding last FlowFile to queue so that the first and last FlowFiles will have different timestamps NIFI-6015: Moved call to sleep() up in unit test to ensure that we sleep before creating the flowfile Signed-off-by: joewitt --- .../controller/repository/TestStandardProcessSession.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/repository/TestStandardProcessSession.java b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/repository/TestStandardProcessSession.java index 42e61d3dec..1880864984 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/repository/TestStandardProcessSession.java +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-framework-core/src/test/java/org/apache/nifi/controller/repository/TestStandardProcessSession.java @@ -1712,12 +1712,17 @@ public class TestStandardProcessSession { } @Test - public void testBatchQueuedHaveSameQueuedTime() { + public void testBatchQueuedHaveSameQueuedTime() throws InterruptedException { for (int i = 0; i < 100; i++) { + if (i == 99) { + Thread.sleep(10); + } + final FlowFileRecord flowFile = new StandardFlowFileRecord.Builder() .id(i) .addAttribute("uuid", "000000000000-0000-0000-0000-0000000" + i) .build(); + this.flowFileQueue.put(flowFile); }