Girish Ramakrishnan
2020-11-09 20:34:48 -08:00
parent 01e6301332
commit 71666a028b
12 changed files with 412 additions and 11 deletions

View File

@@ -20,7 +20,7 @@ let assert = require('assert'),
users = require('./users.js'),
ws = require('ws');
var gHttpServer = null;
let gHttpServer = null;
function initializeExpressSync() {
var app = express();
@@ -372,7 +372,7 @@ function stop(callback) {
async.series([
cloudron.uninitialize,
database.uninitialize,
gHttpServer.close.bind(gHttpServer),
gHttpServer.close.bind(gHttpServer)
], function (error) {
if (error) return callback(error);