This is an automated email from the ASF dual-hosted git repository. fgerlits pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 333971ad52757b04c543c2808592894f8596716d Author: Martin Zink <[email protected]> AuthorDate: Tue Mar 14 12:06:08 2023 +0100 MINIFICPP-2079 Fix OOM in python.feature Signed-off-by: Ferenc Gerlits <[email protected]> This closes #1534 --- docker/test/integration/features/python.feature | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/test/integration/features/python.feature b/docker/test/integration/features/python.feature index f5e70d142..51b6f7028 100644 --- a/docker/test/integration/features/python.feature +++ b/docker/test/integration/features/python.feature @@ -56,9 +56,9 @@ Feature: MiNiFi can use python processors in its flows Scenario: Native python processors can be stateful Given a CountingProcessor processor - And the scheduling period of the CountingProcessor processor is set to "10 ms" + And the scheduling period of the CountingProcessor processor is set to "100 ms" And a PutFile processor with the "Directory" property set to "/tmp/output" And the "success" relationship of the CountingProcessor processor is connected to the PutFile When all instances start up - Then flowfiles with these contents are placed in the monitored directory in less than 60 seconds: "0,1,2,3,4,5" + Then flowfiles with these contents are placed in the monitored directory in less than 5 seconds: "0,1,2,3,4,5"
