feat: create batch when machine detects stacker open

This commit is contained in:
André Sá 2021-11-15 19:29:41 +00:00
parent dde26b8dc2
commit d9cd896d33
2 changed files with 6 additions and 6 deletions

View file

@ -118,7 +118,7 @@ function getMachine (machineId, config) {
.then(([machine, events, config]) => {
const pings = checkPings([machine])
return [machine].map(addName(pings, events, config))[0]
return addName(pings, events, config)(machine)
})
}