aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/videos.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/api/videos.js')
-rw-r--r--server/controllers/api/videos.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/api/videos.js b/server/controllers/api/videos.js
index df068f961..55d671f5b 100644
--- a/server/controllers/api/videos.js
+++ b/server/controllers/api/videos.js
@@ -264,7 +264,7 @@ function updateVideo (req, res, finalCallback) {
264 waterfall([ 264 waterfall([
265 265
266 function startTransaction (callback) { 266 function startTransaction (callback) {
267 db.sequelize.transaction().asCallback(function (err, t) { 267 db.sequelize.transaction({ isolationLevel: 'SERIALIZABLE' }).asCallback(function (err, t) {
268 return callback(err, t) 268 return callback(err, t)
269 }) 269 })
270 }, 270 },