aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-04-09 16:29:38 +0200
committerChocobozzz <me@florianbigard.com>2021-04-09 16:29:38 +0200
commit78ec174cca0f03a0647b0d39c8d91082f63d98db (patch)
tree8b2e0e89182a112e7a35960e197f184157af121c /server
parent21c917b38bcb2eb3e541f745a0a6d8456e3d57b1 (diff)
downloadPeerTube-78ec174cca0f03a0647b0d39c8d91082f63d98db.tar.gz
PeerTube-78ec174cca0f03a0647b0d39c8d91082f63d98db.tar.zst
PeerTube-78ec174cca0f03a0647b0d39c8d91082f63d98db.zip
Don't retry failed transaction for refresh
It's just a refresh and could lead to some issues in our tests. If there is a transaction conflict, it means that the same video is already beeing updated so aborting should be fine
Diffstat (limited to 'server')
-rw-r--r--server/lib/activitypub/videos.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/activitypub/videos.ts b/server/lib/activitypub/videos.ts
index 9014791c0..506204674 100644
--- a/server/lib/activitypub/videos.ts
+++ b/server/lib/activitypub/videos.ts
@@ -539,7 +539,7 @@ async function refreshVideoIfNeeded (options: {
539 account: channelActor.VideoChannel.Account, 539 account: channelActor.VideoChannel.Account,
540 channel: channelActor.VideoChannel 540 channel: channelActor.VideoChannel
541 } 541 }
542 await retryTransactionWrapper(updateVideoFromAP, updateOptions) 542 await updateVideoFromAP(updateOptions)
543 await syncVideoExternalAttributes(video, videoObject, options.syncParam) 543 await syncVideoExternalAttributes(video, videoObject, options.syncParam)
544 544
545 ActorFollowScoreCache.Instance.addGoodServerId(video.VideoChannel.Actor.serverId) 545 ActorFollowScoreCache.Instance.addGoodServerId(video.VideoChannel.Actor.serverId)