Skip to content

Commit 7c48ca0

Browse files
authored
fix pipeline (#830)
1 parent 7f13df9 commit 7c48ca0

File tree

8 files changed

+13
-9
lines changed

8 files changed

+13
-9
lines changed

crt/aws-c-mqtt

Submodule aws-c-mqtt updated 45 files

crt/s2n

Submodule s2n updated from 87f4a05 to 08d413a

integration-testing/java_elasticurl_runner.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
import subprocess
44
import shlex
55

6-
TIMEOUT = 100
6+
TIMEOUT = 300
77
# Runner for elasticurl integration tests
88

99
mvn_args = " ".join(map(shlex.quote, sys.argv[1:]))
1010

1111
java_command = ['mvn', '-e', 'exec:java', '-Dexec.classpathScope=\"test\"',
12-
'-Dexec.mainClass=\"software.amazon.awssdk.crt.test.Elasticurl\"', '-Dexec.args=\"{}\"'.format(mvn_args)]
12+
'-Dexec.mainClass=\"software.amazon.awssdk.crt.test.Elasticurl\"', '-Dexec.args=\"{}\"'.format(mvn_args),
13+
'-Daws.crt.log.level=Trace']
1314

1415
if os.name == 'nt':
1516
# Windows uses mvn.cmd instead

pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,9 @@
301301
</goals>
302302
</execution>
303303
</executions>
304+
<configuration>
305+
<bottom>Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.</bottom>
306+
</configuration>
304307
</plugin>
305308
<!-- GPG signing -->
306309
<plugin>
@@ -499,7 +502,7 @@
499502
<windowtitle>AWS Common Runtime for Java/JVM</windowtitle>
500503
<doctitle>AWS Common Runtime for Java/JVM</doctitle>
501504
<header>AWS Common Runtime for Java/JVM</header>
502-
<bottom>Copyright © Amazon.com, Inc. or its affiliates. All Rights Reserved.</bottom>
505+
<bottom>Copyright &#169; Amazon.com, Inc. or its affiliates. All Rights Reserved.</bottom>
503506
<show>public</show>
504507
<sourcepath>src/main/java</sourcepath>
505508
<notimestamp>true</notimestamp>

0 commit comments

Comments
 (0)