From c8c936092dc378c152451d1a9c7ff841b3a952b2 Mon Sep 17 00:00:00 2001 From: Dengke Date: Sun, 15 Sep 2024 00:41:28 -0700 Subject: [PATCH 1/4] fix pipeline --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 572d076ad..f9ba4ac79 100644 --- a/pom.xml +++ b/pom.xml @@ -499,7 +499,7 @@ AWS Common Runtime for Java/JVM AWS Common Runtime for Java/JVM
AWS Common Runtime for Java/JVM
- Copyright © Amazon.com, Inc. or its affiliates. All Rights Reserved. + Copyright © Amazon.com, Inc. or its affiliates. All Rights Reserved. public src/main/java true From e01a3f7e8f5e4f4e81f8c7e10c855799a03e9c04 Mon Sep 17 00:00:00 2001 From: Dengke Date: Sun, 15 Sep 2024 13:39:30 -0700 Subject: [PATCH 2/4] try fix it --- pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pom.xml b/pom.xml index f9ba4ac79..340a327ce 100644 --- a/pom.xml +++ b/pom.xml @@ -301,6 +301,9 @@ + + Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + From fb95bd8a66a1d89671f9779d1609d934c938f802 Mon Sep 17 00:00:00 2001 From: Dengke Date: Sun, 15 Sep 2024 19:34:34 -0700 Subject: [PATCH 3/4] submodules --- crt/aws-c-auth | 2 +- crt/aws-c-common | 2 +- crt/aws-c-http | 2 +- crt/aws-c-mqtt | 2 +- crt/aws-checksums | 2 +- crt/s2n | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crt/aws-c-auth b/crt/aws-c-auth index e930f1a64..d5e6eb03b 160000 --- a/crt/aws-c-auth +++ b/crt/aws-c-auth @@ -1 +1 @@ -Subproject commit e930f1a64cb3d6b13dbd89c5c9badc5d9d3de1c3 +Subproject commit d5e6eb03b5dc36845cc44995c6afbbce19a287af diff --git a/crt/aws-c-common b/crt/aws-c-common index 672cc0032..b9959f592 160000 --- a/crt/aws-c-common +++ b/crt/aws-c-common @@ -1 +1 @@ -Subproject commit 672cc0032eb28d69fbdd22c9463253c89d7a6f30 +Subproject commit b9959f5922a4b969beab8f0b99aa0b34bc9ee55c diff --git a/crt/aws-c-http b/crt/aws-c-http index 4e74ab1e3..6068653e1 160000 --- a/crt/aws-c-http +++ b/crt/aws-c-http @@ -1 +1 @@ -Subproject commit 4e74ab1e3702763e0b87bd1752f5a37c2f0400ac +Subproject commit 6068653e1d582bd8e7d1c9f81f86beaf10444e3d diff --git a/crt/aws-c-mqtt b/crt/aws-c-mqtt index ed7bbd68c..c43232c1b 160000 --- a/crt/aws-c-mqtt +++ b/crt/aws-c-mqtt @@ -1 +1 @@ -Subproject commit ed7bbd68c03d7022c915a2924740ab7992ad2311 +Subproject commit c43232c1bc378344bb7245d7fcb167410f3fe931 diff --git a/crt/aws-checksums b/crt/aws-checksums index aac442a2d..ce04ab00b 160000 --- a/crt/aws-checksums +++ b/crt/aws-checksums @@ -1 +1 @@ -Subproject commit aac442a2dbbb5e72d0a3eca8313cf65e7e1cac2f +Subproject commit ce04ab00b3ecc41912f478bfedca39f8e1919d6b diff --git a/crt/s2n b/crt/s2n index 87f4a0585..08d413a0b 160000 --- a/crt/s2n +++ b/crt/s2n @@ -1 +1 @@ -Subproject commit 87f4a0585dc3056433f193b9305f587cff239be3 +Subproject commit 08d413a0b9b3226e775a38f04e3cf02230cc97c4 From aa159adf935eaf833eed7aae912d6c73585dd336 Mon Sep 17 00:00:00 2001 From: Dengke Date: Mon, 16 Sep 2024 09:01:40 -0700 Subject: [PATCH 4/4] add trace log and increase the timeout --- integration-testing/java_elasticurl_runner.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/integration-testing/java_elasticurl_runner.py b/integration-testing/java_elasticurl_runner.py index 09e984f52..37c7e428e 100644 --- a/integration-testing/java_elasticurl_runner.py +++ b/integration-testing/java_elasticurl_runner.py @@ -3,13 +3,14 @@ import subprocess import shlex -TIMEOUT = 100 +TIMEOUT = 300 # Runner for elasticurl integration tests mvn_args = " ".join(map(shlex.quote, sys.argv[1:])) java_command = ['mvn', '-e', 'exec:java', '-Dexec.classpathScope=\"test\"', - '-Dexec.mainClass=\"software.amazon.awssdk.crt.test.Elasticurl\"', '-Dexec.args=\"{}\"'.format(mvn_args)] + '-Dexec.mainClass=\"software.amazon.awssdk.crt.test.Elasticurl\"', '-Dexec.args=\"{}\"'.format(mvn_args), + '-Daws.crt.log.level=Trace'] if os.name == 'nt': # Windows uses mvn.cmd instead