aboutsummaryrefslogtreecommitdiffhomepage
path: root/server.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-07-16 14:52:24 +0200
committerChocobozzz <chocobozzz@cpy.re>2019-07-24 10:58:16 +0200
commite0ce715a1ded6e84c877004dae3e354c8716fb06 (patch)
treec2a48af098e27fea2c2c6bb47b2daa68103c1a0e /server.ts
parent89c344dba4ae2fca39cf636c3c6f09f31a339493 (diff)
downloadPeerTube-e0ce715a1ded6e84c877004dae3e354c8716fb06.tar.gz
PeerTube-e0ce715a1ded6e84c877004dae3e354c8716fb06.tar.zst
PeerTube-e0ce715a1ded6e84c877004dae3e354c8716fb06.zip
Check latest plugins version
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 f6fae3718..67abf4b5c 100644
--- a/server.ts
+++ b/server.ts
@@ -113,6 +113,7 @@ import { RemoveOldHistoryScheduler } from './server/lib/schedulers/remove-old-hi
113import { isHTTPSignatureDigestValid } from './server/helpers/peertube-crypto' 113import { isHTTPSignatureDigestValid } from './server/helpers/peertube-crypto'
114import { PeerTubeSocket } from './server/lib/peertube-socket' 114import { PeerTubeSocket } from './server/lib/peertube-socket'
115import { updateStreamingPlaylistsInfohashesIfNeeded } from './server/lib/hls' 115import { updateStreamingPlaylistsInfohashesIfNeeded } from './server/lib/hls'
116import { PluginsCheckScheduler } from './server/lib/schedulers/plugins-check-scheduler'
116 117
117// ----------- Command line ----------- 118// ----------- Command line -----------
118 119
@@ -250,6 +251,7 @@ async function startApplication () {
250 VideosRedundancyScheduler.Instance.enable() 251 VideosRedundancyScheduler.Instance.enable()
251 RemoveOldHistoryScheduler.Instance.enable() 252 RemoveOldHistoryScheduler.Instance.enable()
252 RemoveOldViewsScheduler.Instance.enable() 253 RemoveOldViewsScheduler.Instance.enable()
254 PluginsCheckScheduler.Instance.enable()
253 255
254 // Redis initialization 256 // Redis initialization
255 Redis.Instance.init() 257 Redis.Instance.init()