mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-03-21 03:30:42 +00:00
fix(backend): ジョブキューでSentryが有効にならない問題を修正
This commit is contained in:
@@ -7,7 +7,7 @@
|
|||||||
- Fix: 初回読み込み時などに、言語設定で不整合が発生することがある問題を修正
|
- Fix: 初回読み込み時などに、言語設定で不整合が発生することがある問題を修正
|
||||||
|
|
||||||
### Server
|
### Server
|
||||||
-
|
- Fix: ジョブキューでSentryが有効にならない問題を修正
|
||||||
|
|
||||||
|
|
||||||
## 2025.12.0
|
## 2025.12.0
|
||||||
|
|||||||
@@ -157,7 +157,7 @@ export class QueueProcessorService implements OnApplicationShutdown {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let Sentry: typeof import('@sentry/node') | undefined;
|
let Sentry: typeof import('@sentry/node') | undefined;
|
||||||
if (Sentry != null) {
|
if (this.config.sentryForBackend) {
|
||||||
import('@sentry/node').then((mod) => {
|
import('@sentry/node').then((mod) => {
|
||||||
Sentry = mod;
|
Sentry = mod;
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user