Skip to content

Commit 4886f6d

Browse files
committed
Disable lightship due to issue
1 parent f7554bb commit 4886f6d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
const log = require('./src/log');
22
const { setupApp } = require('./src/app');
33
const config = require('config');
4-
const { createLightship } = require('lightship');
4+
//const { createLightship } = require('lightship');
55
const cluster = require('cluster');
66
const CPUs = require('os').cpus().length;
77

88
log.info('CPUs available', CPUs);
99

10-
const ls = createLightship();
10+
//const ls = createLightship();
1111

1212
if(config.get('App.cluster.enabled') && cluster.isMaster) {
1313
log.info(`Master ${process.pid} is running`);
@@ -25,7 +25,7 @@ if(config.get('App.cluster.enabled') && cluster.isMaster) {
2525
log.info(`Worker ${process.pid} started`);
2626
return app;
2727
})
28-
.then(() => ls.signalReady())
28+
//.then(() => ls.signalReady())
2929
.catch(error => {
3030
log.error(error);
3131
process.exit(1); // eslint-disable-line

0 commit comments

Comments
 (0)