File tree Expand file tree Collapse file tree
dd-smoke-tests/jboss-modules/src/main/java/datadog/smoketest/jbossmodules/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ variables:
2929 GRADLE_PLUGIN_PROXY : " http://artifactual.artifactual.all-clusters.local-dc.fabric.dog:8081/repository/gradle-plugin-portal-proxy/"
3030 BUILDER_IMAGE_VERSION_PREFIX : " " # use either an empty string (e.g. "") for latest images or a version followed by a hyphen (e.g. "v25.05-")
3131 REPO_NOTIFICATION_CHANNEL : " #apm-java-escalations"
32- DEFAULT_TEST_JVMS : /^(8|11|17|21)$/
32+ DEFAULT_TEST_JVMS : /^(8|11|17|21|ibm8 )$/
3333 PROFILE_TESTS :
3434 description : " Enable profiling of tests"
3535 value : " false"
Original file line number Diff line number Diff line change 77
88public class Main {
99 public static void main (final String [] args ) throws Exception {
10+ System .err .println ("STARING APPLICATION" );
11+ Runtime .getRuntime ()
12+ .addShutdownHook (
13+ new Thread (
14+ () -> {
15+ System .err .println ("EXITING NOW!" );
16+ }));
1017 ClientSupport client =
1118 Module .getCallerModule ().loadService (ClientSupport .class ).iterator ().next ();
1219 PublisherSupport publisher =
You can’t perform that action at this time.
0 commit comments