1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Server: do not break remote videos processing on error

This commit is contained in:
Chocobozzz 2017-01-11 18:06:51 +01:00
parent dea32aacde
commit d8cc063e97
3 changed files with 27 additions and 12 deletions

View file

@ -152,8 +152,6 @@ function makeRequests () {
return
}
logger.info('Making requests to friends.')
// We want to group requests by destinations pod and endpoint
const requestsToMakeGrouped = {}
Object.keys(requests).forEach(function (toPodId) {
@ -176,6 +174,8 @@ function makeRequests () {
})
})
logger.info('Making requests to friends.', { requests: requestsToMakeGrouped })
const goodPods = []
const badPods = []