Removed redundant condition.
This commit is contained in:
parent
c8f2ec4d3d
commit
56a3a1d85d
1 changed files with 5 additions and 11 deletions
10
app.js
10
app.js
|
@ -509,17 +509,11 @@ io.sockets.on('connection', realtime.connection);
|
||||||
|
|
||||||
//listen
|
//listen
|
||||||
function startListen() {
|
function startListen() {
|
||||||
if (config.usessl) {
|
|
||||||
server.listen(config.port, function () {
|
server.listen(config.port, function () {
|
||||||
logger.info('HTTPS Server listening at port %d', config.port);
|
var schema = config.usessl ? 'HTTPS' : 'HTTP';
|
||||||
|
logger.info('%s Server listening at port %d', schema, config.port);
|
||||||
config.maintenance = false;
|
config.maintenance = false;
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
server.listen(config.port, function () {
|
|
||||||
logger.info('HTTP Server listening at port %d', config.port);
|
|
||||||
config.maintenance = false;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// sync db then start listen
|
// sync db then start listen
|
||||||
|
|
Loading…
Reference in a new issue