aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/job-queue/handlers
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-11-14 11:11:39 +0100
committerChocobozzz <me@florianbigard.com>2022-11-14 11:11:39 +0100
commit4efa5535ccc947597b7a8e343d6665229ab9cfce (patch)
tree7d3167499c83a9ef33782d4a120f0f757e919819 /server/lib/job-queue/handlers
parent0e45e336f62a411b3c423be46d16252355c754d7 (diff)
downloadPeerTube-4efa5535ccc947597b7a8e343d6665229ab9cfce.tar.gz
PeerTube-4efa5535ccc947597b7a8e343d6665229ab9cfce.tar.zst
PeerTube-4efa5535ccc947597b7a8e343d6665229ab9cfce.zip
Fix infinite playlist import
Using an hard videos limit in config
Diffstat (limited to 'server/lib/job-queue/handlers')
-rw-r--r--server/lib/job-queue/handlers/video-channel-import.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/lib/job-queue/handlers/video-channel-import.ts b/server/lib/job-queue/handlers/video-channel-import.ts
index c3dd8a688..035f88e96 100644
--- a/server/lib/job-queue/handlers/video-channel-import.ts
+++ b/server/lib/job-queue/handlers/video-channel-import.ts
@@ -37,6 +37,7 @@ export async function processVideoChannelImport (job: Job) {
37 await synchronizeChannel({ 37 await synchronizeChannel({
38 channel: videoChannel, 38 channel: videoChannel,
39 externalChannelUrl: payload.externalChannelUrl, 39 externalChannelUrl: payload.externalChannelUrl,
40 channelSync 40 channelSync,
41 videosCountLimit: CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.FULL_SYNC_VIDEOS_LIMIT
41 }) 42 })
42} 43}