diff --git a/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java b/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java index b09770ac77..4af66f0b94 100644 --- a/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java +++ b/java-serverhost/src/main/java/com/redhat/training/example/javaserverhost/rest/ServerHostEndPoint.java @@ -19,7 +19,7 @@ public Response doGet() { catch (Exception e) { e.printStackTrace(); } - String msg = "I am running on server "+host+" Version 1.0 \n"; + String msg = "I am running on server "+host+" Version 2.0 \n"; return Response.ok(msg).build(); } } diff --git a/nodejs-helloworld/package.json b/nodejs-helloworld/package.json index 338e1f7ead..06fa4e76a1 100644 --- a/nodejs-helloworld/package.json +++ b/nodejs-helloworld/package.json @@ -9,6 +9,6 @@ "author": "Red Hat Training", "license": "ASL", "dependencies": { - "express" "4.14.x" + "express" : "4.14.x" } }