Show naked_domain for healthtask summary

This commit is contained in:
Johannes Zellner
2016-02-14 17:42:52 +01:00
parent b32a48c212
commit 9bf1fe3b7d

View File

@@ -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);