mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 10:49:28 +02:00
Server: throttle "seedAll" when starting the server
This commit is contained in:
parent
798442f665
commit
419633ce9d
2 changed files with 7 additions and 2 deletions
|
@ -40,6 +40,10 @@ const SEARCHABLE_COLUMNS = {
|
|||
VIDEOS: [ 'name', 'magnetUri', 'podUrl', 'author', 'tags' ]
|
||||
}
|
||||
|
||||
// Seeds in parallel we send to electron when "seed all"
|
||||
// Once a video is in seeding state we seed another video etc
|
||||
const SEEDS_IN_PARALLEL = 3
|
||||
|
||||
// Sortable columns per schema
|
||||
const SORTABLE_COLUMNS = {
|
||||
VIDEOS: [ 'name', '-name', 'duration', '-duration', 'createdDate', '-createdDate' ]
|
||||
|
@ -83,6 +87,7 @@ module.exports = {
|
|||
REQUESTS_LIMIT: REQUESTS_LIMIT,
|
||||
RETRY_REQUESTS: RETRY_REQUESTS,
|
||||
SEARCHABLE_COLUMNS: SEARCHABLE_COLUMNS,
|
||||
SEEDS_IN_PARALLEL: SEEDS_IN_PARALLEL,
|
||||
SORTABLE_COLUMNS: SORTABLE_COLUMNS,
|
||||
THUMBNAILS_SIZE: THUMBNAILS_SIZE,
|
||||
THUMBNAILS_STATIC_PATH: THUMBNAILS_STATIC_PATH,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue