Skip to content

20240503-1 #118

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 13 commits into from
2 changes: 2 additions & 0 deletions src/main/java/io/openliberty/sample/system/SystemRuntime.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public class SystemRuntime {
@Produces(MediaType.TEXT_PLAIN)
public Response getRuntime() {
String libertyVersion = getServerVersion();
System.out.println("FW: SystemRuntime 20240503-A");
return Response.ok(libertyVersion).build();
}

Expand All @@ -51,6 +52,7 @@ String getServerVersion() {
}
} catch (Exception ex) {
System.out.println("Unable to retrieve server version.");
System.out.println("FW");
}
return version;
}
Expand Down
Loading