This commit is contained in:
tamaina 2025-07-21 00:58:20 +09:00
parent 6aad9299dc
commit 449fadd15a
1 changed files with 2 additions and 2 deletions

View File

@ -307,9 +307,9 @@ export class ServerService implements OnApplicationShutdown {
public async dispose(): Promise<void> {
console.log('Disposing ServerService...');
await this.streamingApiServerService.detach();
this.logger.info('Streaming API server detached.');
console.log('Streaming API server detached.');
await this.#fastify.close();
this.logger.info('Fastify server closed.');
console.log('Fastify server closed.');
}
/**