1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-14 15:20:06 +02:00

chore(portal-api): lint

This commit is contained in:
Sérgio Ramos 2017-07-19 17:10:51 +01:00 committed by Judit Greskovits
parent 0a8fa05498
commit 6882143a98

View File

@ -343,7 +343,9 @@ module.exports = class ContainerPilotWatcher extends Events {
}, null);
})
.filter(Boolean)
.filter((serviceId) => service.id !== serviceId);
.filter((serviceId) => {
return service.id !== serviceId;
});
}
_resolveInstanceHealth ({ name }, instance) {