Skip to content

Commit c7af272

Browse files
committed
fix: Missing semicolon
1 parent a6d4d2f commit c7af272

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/app_worker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const app = new Application(options);
2121
const clusterConfig = app.config.cluster || /* istanbul ignore next */ {};
2222
const listenConfig = clusterConfig.listen || /* istanbul ignore next */ {};
2323
const port = options.port = options.port || listenConfig.port;
24-
const https = options.https || listenConfig.https
24+
const https = options.https || listenConfig.https;
2525
process.send({ to: 'master', action: 'realport', data: port });
2626
app.ready(startServer);
2727

0 commit comments

Comments
 (0)