diff options
Diffstat (limited to 'server/models/video.js')
-rw-r--r-- | server/models/video.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/models/video.js b/server/models/video.js index 98f43a06d..396aa505d 100644 --- a/server/models/video.js +++ b/server/models/video.js | |||
@@ -1,7 +1,7 @@ | |||
1 | 'use strict' | 1 | 'use strict' |
2 | 2 | ||
3 | const config = require('config') | 3 | const config = require('config') |
4 | const each = require('async/each') | 4 | const eachLimit = require('async/eachLimit') |
5 | const ffmpeg = require('fluent-ffmpeg') | 5 | const ffmpeg = require('fluent-ffmpeg') |
6 | const fs = require('fs') | 6 | const fs = require('fs') |
7 | const parallel = require('async/parallel') | 7 | const parallel = require('async/parallel') |
@@ -235,7 +235,7 @@ function seedAllExisting (callback) { | |||
235 | listOwned.call(this, function (err, videos) { | 235 | listOwned.call(this, function (err, videos) { |
236 | if (err) return callback(err) | 236 | if (err) return callback(err) |
237 | 237 | ||
238 | each(videos, function (video, callbackEach) { | 238 | eachLimit(videos, constants.SEEDS_IN_PARALLEL, function (video, callbackEach) { |
239 | const videoPath = pathUtils.join(uploadsDir, video.filename) | 239 | const videoPath = pathUtils.join(uploadsDir, video.filename) |
240 | seed(videoPath, callbackEach) | 240 | seed(videoPath, callbackEach) |
241 | }, callback) | 241 | }, callback) |