We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5e5043 commit 1aa9d55Copy full SHA for 1aa9d55
src/main/java/spp/demo/Main.java
@@ -82,7 +82,9 @@ public static void triggerEndpoints() {
82
private static void callEndpoint(String endpoint) {
83
executor.execute(() -> {
84
try {
85
+ System.out.println("Calling endpoint: " + endpoint);
86
new URL("http://localhost:8080" + endpoint).openStream().close();
87
+ System.out.println("Called endpoint: " + endpoint);
88
} catch (Exception ignore) {
89
}
90
});
0 commit comments