From 51563d3c29586372f3c049e1b6b1ffd9e4691888 Mon Sep 17 00:00:00 2001 From: wanderer Date: Thu, 27 Jul 2017 23:29:33 -0400 Subject: [PATCH] added missing startup Signed-off-by: wanderer --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 11f600b..72de421 100644 --- a/index.js +++ b/index.js @@ -101,6 +101,7 @@ module.exports = class Hypervisor { } else { const resolve = this.scheduler.getLock(id) const instance = await this._loadInstance(id) + await instance.startup() resolve(instance) return instance }