Skip to content

Commit

Permalink
add trace log and increase the timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
TingDaoK committed Sep 16, 2024
1 parent fb95bd8 commit aa159ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions integration-testing/java_elasticurl_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit aa159ad

Please sign in to comment.