We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4de125c commit 13dc1c3Copy full SHA for 13dc1c3
server-source/routes/get-meals.js
@@ -25,7 +25,7 @@ router.get("/", function (req, res, next) {
25
26
const hostname = process.env.HOSTNAME // hostname where the app is deployed
27
// send email alerts only when the server is deployed on one of these hosts
28
- const alertableHostnames = ['heroku'];
+ const alertableHostnames = ['no_such_hostname'];
29
30
// if the current host belongs to alertable hosts and if the current client has been added to the list of new clients
31
if (alertableHostnames.includes(hostname) && isNewClient) {
0 commit comments