File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
java/com/walmartlabs/concord/it/server
resources/com/walmartlabs/concord/it/server Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ public void testPullRetry() throws Exception {
153153 assertLogAtLeast (".*Error pulling the image.*" , 2 , ab );
154154 }
155155
156- @ Test ( timeout = DEFAULT_TEST_TIMEOUT )
156+ @ Test
157157 public void testDockerLogCaptureLimit () throws Exception {
158158 byte [] payload = archive (DockerIT .class .getResource ("dockerCaptureLimit" ).toURI ());
159159
@@ -171,7 +171,7 @@ public void testDockerLogCaptureLimit() throws Exception {
171171 assertLog (".*stderr loop 10000.*" , ab );
172172 }
173173
174- @ Test ( timeout = DEFAULT_TEST_TIMEOUT )
174+ @ Test
175175 public void testDockerLogCaptureLimitV2 () throws Exception {
176176 byte [] payload = archive (DockerIT .class .getResource ("dockerCaptureLimitV2" ).toURI ());
177177
Original file line number Diff line number Diff line change 11flows :
2- main :
2+ default :
33 - task : docker
44 in :
55 image : ${image}
66 debug : true
77 forcePull : false
88 stderr : myErrout
99 cmd : |
10- for i in {1..10000}; do
10+ for i in {1..10000}
11+ do
1112 echo "stdout loop $i"
1213 >&2 echo "stderr loop $i"
1314 done
14-
15- variables :
16- entryPoint : main
Original file line number Diff line number Diff line change 77 forcePull : false
88 stderr : myErrout
99 cmd : |
10- for i in {1..10000}; do
10+ for i in {1..10000}
11+ do
1112 echo "stdout loop $i"
1213 >&2 echo "stderr loop $i"
1314 done
You can’t perform that action at this time.
0 commit comments