Skip to content

Commit

Permalink
fix(backend): Misskeyのバックエンドプロセスが終了しない
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Oct 9, 2023
1 parent 0bb0c32 commit 11c9e19
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
- Fix: 同じ種類のTLのストリーミングを複数接続できない問題を修正
- Fix: アンテナTLを途中までしかページネーションできなくなることがある問題を修正
- Fix: 「ファイル付きのみ」のTLでファイル無しの新着ノートが流れる問題を修正
- Fix: プロセスが終了しない、あるいは非常に時間がかかる問題を修正

## 2023.9.3
### General
Expand Down
2 changes: 0 additions & 2 deletions packages/backend/src/boot/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export async function server() {
const app = await NestFactory.createApplicationContext(MainModule, {
logger: new NestLogger(),
});
app.enableShutdownHooks();

const serverService = app.get(ServerService);
await serverService.launch();
Expand All @@ -35,7 +34,6 @@ export async function jobQueue() {
const jobQueue = await NestFactory.createApplicationContext(QueueProcessorModule, {
logger: new NestLogger(),
});
jobQueue.enableShutdownHooks();

jobQueue.get(QueueProcessorService).start();
jobQueue.get(ChartManagementService).start();
Expand Down

0 comments on commit 11c9e19

Please sign in to comment.