Skip to content

Commit

Permalink
Fixed: Server outputs wrong root path for helloworld
Browse files Browse the repository at this point in the history
Signed-off-by: Markus KARG <[email protected]>
  • Loading branch information
mkarg committed Jul 24, 2019
1 parent c2f3392 commit b15eb34
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public static void main(String[] args) {
server.start();

System.out.println("Application started.\nTry out");
System.out.println(String.format("%s%s", BASE_URI, ROOT_HELLO_PATH));
System.out.println(String.format("%s%s%s", BASE_URI, ROOT_HELLO_PATH, "/Some%Name"));
System.out.println(String.format("%s%s%s", BASE_URI, ROOT_COUNTER_PATH, "/request"));
System.out.println(String.format("%s%s%s", BASE_URI, ROOT_COUNTER_PATH, "/application"));
System.out.println("Stop the application using CTRL+C");
Expand Down

0 comments on commit b15eb34

Please sign in to comment.