diff options
Diffstat (limited to 'server/initializers')
-rw-r--r-- | server/initializers/constants.js | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/server/initializers/constants.js b/server/initializers/constants.js index 22cbb1361..caeb340cf 100644 --- a/server/initializers/constants.js +++ b/server/initializers/constants.js | |||
@@ -18,11 +18,11 @@ const PODS_SCORE = { | |||
18 | BONUS: 10 | 18 | BONUS: 10 |
19 | } | 19 | } |
20 | 20 | ||
21 | // Number of retries we make for the make retry requests (to friends...) | 21 | // Number of requests in parallel we can make |
22 | let REQUEST_RETRIES = 10 | 22 | const REQUESTS_IN_PARALLEL = 10 |
23 | 23 | ||
24 | // Different types or requests for the request scheduler module | 24 | // Number of requests to retry for replay requests module |
25 | const REQUEST_SCHEDULER_TYPE = [ 'add', 'remove' ] | 25 | const RETRY_REQUESTS = 5 |
26 | 26 | ||
27 | // Sortable columns per schema | 27 | // Sortable columns per schema |
28 | const SEARCHABLE_COLUMNS = { | 28 | const SEARCHABLE_COLUMNS = { |
@@ -56,7 +56,6 @@ if (isTestInstance() === true) { | |||
56 | FRIEND_BASE_SCORE = 20 | 56 | FRIEND_BASE_SCORE = 20 |
57 | INTERVAL = 10000 | 57 | INTERVAL = 10000 |
58 | VIDEOS_CONSTRAINTS_FIELDS.DURATION.max = 14 | 58 | VIDEOS_CONSTRAINTS_FIELDS.DURATION.max = 14 |
59 | REQUEST_RETRIES = 2 | ||
60 | } | 59 | } |
61 | 60 | ||
62 | // --------------------------------------------------------------------------- | 61 | // --------------------------------------------------------------------------- |
@@ -67,8 +66,8 @@ module.exports = { | |||
67 | INTERVAL: INTERVAL, | 66 | INTERVAL: INTERVAL, |
68 | PAGINATION_COUNT_DEFAULT: PAGINATION_COUNT_DEFAULT, | 67 | PAGINATION_COUNT_DEFAULT: PAGINATION_COUNT_DEFAULT, |
69 | PODS_SCORE: PODS_SCORE, | 68 | PODS_SCORE: PODS_SCORE, |
70 | REQUEST_RETRIES: REQUEST_RETRIES, | 69 | REQUESTS_IN_PARALLEL: REQUESTS_IN_PARALLEL, |
71 | REQUEST_SCHEDULER_TYPE: REQUEST_SCHEDULER_TYPE, | 70 | RETRY_REQUESTS: RETRY_REQUESTS, |
72 | SEARCHABLE_COLUMNS: SEARCHABLE_COLUMNS, | 71 | SEARCHABLE_COLUMNS: SEARCHABLE_COLUMNS, |
73 | SORTABLE_COLUMNS: SORTABLE_COLUMNS, | 72 | SORTABLE_COLUMNS: SORTABLE_COLUMNS, |
74 | THUMBNAILS_SIZE: THUMBNAILS_SIZE, | 73 | THUMBNAILS_SIZE: THUMBNAILS_SIZE, |