diff --git a/src/apphealthmonitor.js b/src/apphealthmonitor.js index c7e235bb3..8abb46290 100644 --- a/src/apphealthmonitor.js +++ b/src/apphealthmonitor.js @@ -116,7 +116,7 @@ function processApps(callback) { var alive = apps .filter(function (a) { return a.installationState === appdb.ISTATE_INSTALLED && a.runState === appdb.RSTATE_RUNNING && a.health === appdb.HEALTH_HEALTHY; }) - .map(function (a) { return a.location; }).join(', '); + .map(function (a) { return a.location || 'naked_domain'; }).join(', '); debug('apps alive: [%s]', alive);