aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server.ts')
-rw-r--r--server.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/server.ts b/server.ts
index 3b9353e2f..6073d2ea4 100644
--- a/server.ts
+++ b/server.ts
@@ -139,6 +139,7 @@ import { VideoViewsManager } from '@server/lib/views/video-views-manager'
139import { isTestOrDevInstance } from './server/helpers/core-utils' 139import { isTestOrDevInstance } from './server/helpers/core-utils'
140import { OpenTelemetryMetrics } from '@server/lib/opentelemetry/metrics' 140import { OpenTelemetryMetrics } from '@server/lib/opentelemetry/metrics'
141import { ApplicationModel } from '@server/models/application/application' 141import { ApplicationModel } from '@server/models/application/application'
142import { VideoChannelSyncLatestScheduler } from '@server/lib/schedulers/video-channel-sync-latest-scheduler'
142 143
143// ----------- Command line ----------- 144// ----------- Command line -----------
144 145
@@ -314,6 +315,7 @@ async function startApplication () {
314 PeerTubeVersionCheckScheduler.Instance.enable() 315 PeerTubeVersionCheckScheduler.Instance.enable()
315 AutoFollowIndexInstances.Instance.enable() 316 AutoFollowIndexInstances.Instance.enable()
316 RemoveDanglingResumableUploadsScheduler.Instance.enable() 317 RemoveDanglingResumableUploadsScheduler.Instance.enable()
318 VideoChannelSyncLatestScheduler.Instance.enable()
317 VideoViewsBufferScheduler.Instance.enable() 319 VideoViewsBufferScheduler.Instance.enable()
318 GeoIPUpdateScheduler.Instance.enable() 320 GeoIPUpdateScheduler.Instance.enable()
319 OpenTelemetryMetrics.Instance.registerMetrics() 321 OpenTelemetryMetrics.Instance.registerMetrics()