Skip to content

Commit cb9add0

Browse files
committed
wip
1 parent 089cf8f commit cb9add0

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

dd-smoke-tests/jboss-modules/src/main/java/datadog/smoketest/jbossmodules/app/Main.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77

88
public 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 =

0 commit comments

Comments
 (0)