aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/remote/videos.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/api/remote/videos.js')
-rw-r--r--server/controllers/api/remote/videos.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/remote/videos.js b/server/controllers/api/remote/videos.js
index b9494f602..c45a86dbb 100644
--- a/server/controllers/api/remote/videos.js
+++ b/server/controllers/api/remote/videos.js
@@ -203,7 +203,7 @@ function updateRemoteVideo (videoAttributesToUpdate, fromPod, finalCallback) {
203 waterfall([ 203 waterfall([
204 204
205 function startTransaction (callback) { 205 function startTransaction (callback) {
206 db.sequelize.transaction().asCallback(function (err, t) { 206 db.sequelize.transaction({ isolationLevel: 'SERIALIZABLE' }).asCallback(function (err, t) {
207 return callback(err, t) 207 return callback(err, t)
208 }) 208 })
209 }, 209 },