Skip to content

Commit ca60105

Browse files
authored
Update http-server.ts (#535)
1 parent 741fdf2 commit ca60105

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/service/http-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export class HttpServer {
164164
this.log.info(`${protocol?.toUpperCase()} Server started, listening at ${protocol}://${host}:${info.port}`);
165165
});
166166
} else {
167-
this.server = this.app.listen(port, () => {
167+
this.server.listen(port, () => {
168168
const info = this.server.address() as net.AddressInfo;
169169
this.log.info(`${protocol?.toUpperCase()} Server started, listening at ${protocol}://localhost:${info.port}`);
170170
});

0 commit comments

Comments
 (0)