@@ -60,7 +60,7 @@ void simple_pipeline_with_single_record() {
6060 final int numRecords = 1 ;
6161 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
6262
63- await ().atMost (1000 , TimeUnit .MILLISECONDS )
63+ await ().atMost (2000 , TimeUnit .MILLISECONDS )
6464 .untilAsserted (() -> {
6565 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
6666 assertThat (outputRecords , not (empty ()));
@@ -76,7 +76,7 @@ void simple_pipeline_with_multiple_records() {
7676 final int numRecords = 100 ;
7777 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
7878
79- await ().atMost (1000 , TimeUnit .MILLISECONDS )
79+ await ().atMost (2000 , TimeUnit .MILLISECONDS )
8080 .untilAsserted (() -> {
8181 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
8282 assertThat (outputRecords , not (empty ()));
@@ -106,7 +106,7 @@ void three_pipelines_with_multiple_records() {
106106 final int numRecords = 100 ;
107107 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
108108
109- await ().atMost (10000 , TimeUnit .MILLISECONDS )
109+ await ().atMost (20000 , TimeUnit .MILLISECONDS )
110110 .untilAsserted (() -> {
111111 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
112112 assertThat (outputRecords , not (empty ()));
@@ -121,7 +121,7 @@ void three_pipelines_with_route_and_multiple_records() {
121121 final int numRecords = 100 ;
122122 inMemorySourceAccessor .submitWithStatus (IN_MEMORY_IDENTIFIER , numRecords );
123123
124- await ().atMost (10000 , TimeUnit .MILLISECONDS )
124+ await ().atMost (20000 , TimeUnit .MILLISECONDS )
125125 .untilAsserted (() -> {
126126 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
127127 assertThat (outputRecords , not (empty ()));
@@ -136,7 +136,7 @@ void two_parallel_pipelines_multiple_records() {
136136 final int numRecords = 100 ;
137137 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
138138
139- await ().atMost (10000 , TimeUnit .MILLISECONDS )
139+ await ().atMost (20000 , TimeUnit .MILLISECONDS )
140140 .untilAsserted (() -> {
141141 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
142142 assertThat (outputRecords , not (empty ()));
@@ -151,7 +151,7 @@ void three_pipelines_multi_sink_multiple_records() {
151151 final int numRecords = 100 ;
152152 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
153153
154- await ().atMost (10000 , TimeUnit .MILLISECONDS )
154+ await ().atMost (20000 , TimeUnit .MILLISECONDS )
155155 .untilAsserted (() -> {
156156 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
157157 assertThat (outputRecords , not (empty ()));
@@ -166,7 +166,7 @@ void one_pipeline_three_sinks_multiple_records() {
166166 final int numRecords = 100 ;
167167 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
168168
169- await ().atMost (10000 , TimeUnit .MILLISECONDS )
169+ await ().atMost (20000 , TimeUnit .MILLISECONDS )
170170 .untilAsserted (() -> {
171171 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
172172 assertThat (outputRecords , not (empty ()));
@@ -181,7 +181,7 @@ void one_pipeline_ack_expiry_multiple_records() {
181181 final int numRecords = 100 ;
182182 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
183183
184- await ().atMost (10000 , TimeUnit .MILLISECONDS )
184+ await ().atMost (20000 , TimeUnit .MILLISECONDS )
185185 .untilAsserted (() -> {
186186 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
187187 assertThat (outputRecords , not (empty ()));
@@ -197,7 +197,7 @@ void one_pipeline_three_sinks_negative_ack_multiple_records() {
197197 inMemorySourceAccessor .submit (IN_MEMORY_IDENTIFIER , numRecords );
198198 inMemorySinkAccessor .setResult (false );
199199
200- await ().atMost (10000 , TimeUnit .MILLISECONDS )
200+ await ().atMost (20000 , TimeUnit .MILLISECONDS )
201201 .untilAsserted (() -> {
202202 List <Record <Event >> outputRecords = inMemorySinkAccessor .get (IN_MEMORY_IDENTIFIER );
203203 assertThat (outputRecords , not (empty ()));
0 commit comments