Revert "fix(backend): Misskeyのバックエンドプロセスが終了しない"
This reverts commit 11c9e193a4
.
io フォークで修正済みのため、多分正常に終了してくれたほうが嬉しい
This commit is contained in:
parent
a61ba41b84
commit
1a5ba39329
|
@ -57,7 +57,6 @@
|
||||||
- Fix: 同じ種類のTLのストリーミングを複数接続できない問題を修正
|
- Fix: 同じ種類のTLのストリーミングを複数接続できない問題を修正
|
||||||
- Fix: アンテナTLを途中までしかページネーションできなくなることがある問題を修正
|
- Fix: アンテナTLを途中までしかページネーションできなくなることがある問題を修正
|
||||||
- Fix: 「ファイル付きのみ」のTLでファイル無しの新着ノートが流れる問題を修正
|
- Fix: 「ファイル付きのみ」のTLでファイル無しの新着ノートが流れる問題を修正
|
||||||
- Fix: プロセスが終了しない、あるいは非常に時間がかかる問題を修正
|
|
||||||
|
|
||||||
## 2023.9.3
|
## 2023.9.3
|
||||||
### General
|
### General
|
||||||
|
|
|
@ -17,6 +17,7 @@ export async function server() {
|
||||||
const app = await NestFactory.createApplicationContext(MainModule, {
|
const app = await NestFactory.createApplicationContext(MainModule, {
|
||||||
logger: new NestLogger(),
|
logger: new NestLogger(),
|
||||||
});
|
});
|
||||||
|
app.enableShutdownHooks();
|
||||||
|
|
||||||
const serverService = app.get(ServerService);
|
const serverService = app.get(ServerService);
|
||||||
await serverService.launch();
|
await serverService.launch();
|
||||||
|
@ -34,6 +35,7 @@ export async function jobQueue() {
|
||||||
const jobQueue = await NestFactory.createApplicationContext(QueueProcessorModule, {
|
const jobQueue = await NestFactory.createApplicationContext(QueueProcessorModule, {
|
||||||
logger: new NestLogger(),
|
logger: new NestLogger(),
|
||||||
});
|
});
|
||||||
|
jobQueue.enableShutdownHooks();
|
||||||
|
|
||||||
jobQueue.get(QueueProcessorService).start();
|
jobQueue.get(QueueProcessorService).start();
|
||||||
jobQueue.get(ChartManagementService).start();
|
jobQueue.get(ChartManagementService).start();
|
||||||
|
|
Loading…
Reference in New Issue