diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-02-06 00:13:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-06 00:13:52 +0900 |
| commit | c1b264e4e9686804e1b8ea17ba39753c41bd205b (patch) | |
| tree | 041e794b683cf986f98fcc04a3d5a50a8dcb7554 /packages/backend/src/queue/processors/system/index.ts | |
| parent | enhance(client): improve chart rendering (diff) | |
| download | misskey-c1b264e4e9686804e1b8ea17ba39753c41bd205b.tar.gz misskey-c1b264e4e9686804e1b8ea17ba39753c41bd205b.tar.bz2 misskey-c1b264e4e9686804e1b8ea17ba39753c41bd205b.zip | |
Improve chart engine (#8253)
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update core.ts
* wip
* wip
* #7361
* delete network chart
* federationChart強化 apRequestChart追加
* tweak
Diffstat (limited to 'packages/backend/src/queue/processors/system/index.ts')
| -rw-r--r-- | packages/backend/src/queue/processors/system/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/queue/processors/system/index.ts b/packages/backend/src/queue/processors/system/index.ts index 8460ea0a9b..636fefc402 100644 --- a/packages/backend/src/queue/processors/system/index.ts +++ b/packages/backend/src/queue/processors/system/index.ts @@ -1,8 +1,10 @@ import * as Bull from 'bull'; import { resyncCharts } from './resync-charts'; +import { cleanCharts } from './clean-charts'; const jobs = { resyncCharts, + cleanCharts, } as Record<string, Bull.ProcessCallbackFunction<Record<string, unknown>> | Bull.ProcessPromiseFunction<Record<string, unknown>>>; export default function(dbQueue: Bull.Queue<Record<string, unknown>>) { |