Chapter 6: update hapi samples for TE review

This commit is contained in:
Beth Griggs 2020-11-10 23:24:48 +00:00
parent 473d903805
commit ca864f77b4
No known key found for this signature in database
GPG Key ID: D7062848A1AB005C
4 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ const initialize = async () => {
});
await server.start();
console.log("Server running on %s", server.info.uri);
console.log("Server listening on", server.info.uri);
};
initialize();

View File

@ -21,7 +21,7 @@ const initialize = async () => {
});
await server.start();
console.log("Server running on %s", server.info.uri);
console.log("Server listening on", server.info.uri);
};
initialize();

View File

@ -21,7 +21,7 @@ const initialize = async () => {
});
await server.start();
console.log("Server running on %s", server.info.uri);
console.log("Server listening on", server.info.uri);
};
initialize();

View File

@ -30,7 +30,7 @@ const initialize = async () => {
});
await server.start();
console.log("Server running on %s", server.info.uri);
console.log("Server listening on", server.info.uri);
};
initialize();