From a2db4312b8ce5bea85739119a764f93d2a2b2b5b Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 3 Oct 2016 15:49:47 -0700 Subject: [PATCH] give dummy callback to reboot --- src/routes/cloudron.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/cloudron.js b/src/routes/cloudron.js index 5dc3a78e3..5eb547aef 100644 --- a/src/routes/cloudron.js +++ b/src/routes/cloudron.js @@ -116,7 +116,7 @@ function reboot(req, res, next) { // Finish the request, to let the appstore know we triggered the restore it next(new HttpSuccess(202, {})); - cloudron.reboot(); + cloudron.reboot(function () { }); } function migrate(req, res, next) {