Skip to content
Closed

wip #8964

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variables:
GRADLE_PLUGIN_PROXY: "http://artifactual.artifactual.all-clusters.local-dc.fabric.dog:8081/repository/gradle-plugin-portal-proxy/"
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-")
REPO_NOTIFICATION_CHANNEL: "#apm-java-escalations"
DEFAULT_TEST_JVMS: /^(8|11|17|21)$/
DEFAULT_TEST_JVMS: /^(8|11|17|21|ibm8)$/
PROFILE_TESTS:
description: "Enable profiling of tests"
value: "false"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@

public class Main {
public static void main(final String[] args) throws Exception {
System.err.println("STARING APPLICATION");
Runtime.getRuntime()
.addShutdownHook(
new Thread(
() -> {
System.err.println("EXITING NOW!");
}));
ClientSupport client =
Module.getCallerModule().loadService(ClientSupport.class).iterator().next();
PublisherSupport publisher =
Expand Down
Loading