From a0ac3e4808c21df495380a822afafc3b406f8b5c Mon Sep 17 00:00:00 2001 From: sansow Date: Tue, 22 Jun 2021 00:12:20 -0400 Subject: [PATCH 1/4] Update package.json --- nodejs-helloworld/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs-helloworld/package.json b/nodejs-helloworld/package.json index 338e1f7ead..29b13f406d 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" } } From 45164db87de89da59d56a0aef51385403bb75c59 Mon Sep 17 00:00:00 2001 From: sansow Date: Tue, 22 Jun 2021 00:15:15 -0400 Subject: [PATCH 2/4] Update package.json --- nodejs-helloworld/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs-helloworld/package.json b/nodejs-helloworld/package.json index 29b13f406d..338e1f7ead 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" } } From ad345e1522000f9216d9a228be942f9f3289c240 Mon Sep 17 00:00:00 2001 From: sansow Date: Tue, 22 Jun 2021 00:20:49 -0400 Subject: [PATCH 3/4] Update package.json --- nodejs-helloworld/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } } From 07b5b355b78211f499869f96b0b5f141cbfb107e Mon Sep 17 00:00:00 2001 From: Student User Date: Wed, 24 Jan 2024 15:38:38 -0500 Subject: [PATCH 4/4] updated version --- .../example/javaserverhost/rest/ServerHostEndPoint.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }