We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741fdf2 commit ca60105Copy full SHA for ca60105
src/service/http-server.ts
@@ -164,7 +164,7 @@ export class HttpServer {
164
this.log.info(`${protocol?.toUpperCase()} Server started, listening at ${protocol}://${host}:${info.port}`);
165
});
166
} else {
167
- this.server = this.app.listen(port, () => {
+ this.server.listen(port, () => {
168
const info = this.server.address() as net.AddressInfo;
169
this.log.info(`${protocol?.toUpperCase()} Server started, listening at ${protocol}://localhost:${info.port}`);
170
0 commit comments