diff --git a/micro-java/src/main/java/com/redhat/training/openshift/hello/HelloResource.java b/micro-java/src/main/java/com/redhat/training/openshift/hello/HelloResource.java index 7b39d65..41084a4 100644 --- a/micro-java/src/main/java/com/redhat/training/openshift/hello/HelloResource.java +++ b/micro-java/src/main/java/com/redhat/training/openshift/hello/HelloResource.java @@ -19,7 +19,7 @@ public class HelloResource { if (message == null) { response = "Hello world from host "+hostname+"\n"; } else { - response = "Hello world from host ["+hostname+"]."; + response = "Hello world from host ["+hostname+"].\n"; response += "Message received = "+message+"\n"; } return response;