From: Chocobozzz Date: Tue, 20 Mar 2018 07:54:24 +0000 (+0100) Subject: Improve update host script X-Git-Tag: v1.0.0-beta.1~2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=c91de74372432dee446bf837121ff40359185f4e;p=github%2FChocobozzz%2FPeerTube.git Improve update host script --- diff --git a/scripts/update-host.ts b/scripts/update-host.ts index 3fb5f1972..ed8b999a9 100755 --- a/scripts/update-host.ts +++ b/scripts/update-host.ts @@ -22,18 +22,13 @@ initDatabaseModels(true) console.log('Updating torrent files.') return VideoModel.list() }) - .then(videos => { - const tasks: Promise[] = [] - - videos.forEach(video => { - console.log('Updating video ' + video.uuid) - - video.VideoFiles.forEach(file => { - tasks.push(video.createTorrentAndSetInfoHash(file)) - }) - }) - - return Promise.all(tasks) + .then(async videos => { + for (const video of videos) { + for (const file of video.VideoFiles) { + await video.createTorrentAndSetInfoHash(file) + console.log('Updated video ' + video.uuid) + } + } }) .then(() => { process.exit(0)