Merge pull request #17729 from overleaf/em-promisify-sync-manager

Promisify SyncManager

GitOrigin-RevId: 134770d812a493e39410debb370ed4a58ffff4bf
This commit is contained in:
Eric Mc Sween 2024-04-11 08:32:51 -04:00 committed by Copybot
parent c9373c25f4
commit f03e3fd51e
10 changed files with 780 additions and 805 deletions

2
package-lock.json generated
View file

@ -43037,6 +43037,7 @@
"@overleaf/logger": "*", "@overleaf/logger": "*",
"@overleaf/metrics": "*", "@overleaf/metrics": "*",
"@overleaf/o-error": "*", "@overleaf/o-error": "*",
"@overleaf/promise-utils": "*",
"@overleaf/redis-wrapper": "*", "@overleaf/redis-wrapper": "*",
"@overleaf/settings": "*", "@overleaf/settings": "*",
"async": "^3.2.2", "async": "^3.2.2",
@ -51636,6 +51637,7 @@
"@overleaf/logger": "*", "@overleaf/logger": "*",
"@overleaf/metrics": "*", "@overleaf/metrics": "*",
"@overleaf/o-error": "*", "@overleaf/o-error": "*",
"@overleaf/promise-utils": "*",
"@overleaf/redis-wrapper": "*", "@overleaf/redis-wrapper": "*",
"@overleaf/settings": "*", "@overleaf/settings": "*",
"async": "^3.2.2", "async": "^3.2.2",

View file

@ -305,6 +305,11 @@ export function getFailures(callback) {
export const promises = { export const promises = {
getFailedProjects: promisify(getFailedProjects), getFailedProjects: promisify(getFailedProjects),
record: promisify(record),
getFailureRecord: promisify(getFailureRecord), getFailureRecord: promisify(getFailureRecord),
getLastFailure: promisify(getLastFailure),
getFailuresByType: promisify(getFailuresByType),
getFailures: promisify(getFailures),
record: promisify(record),
recordSyncStart: promisify(recordSyncStart),
setForceDebug: promisify(setForceDebug),
} }

View file

@ -10,6 +10,7 @@
* DS207: Consider shorter variations of null checks * DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/ */
import { promisify } from 'util'
import fs from 'fs' import fs from 'fs'
import crypto from 'crypto' import crypto from 'crypto'
import OError from '@overleaf/o-error' import OError from '@overleaf/o-error'
@ -51,3 +52,7 @@ export function _getBlobHash(fsPath, callback) {
}) })
}) })
} }
export const promises = {
_getBlobHash: promisify(_getBlobHash),
}

View file

@ -1,9 +1,9 @@
import { promisify } from 'util'
import fs from 'fs' import fs from 'fs'
import request from 'request' import request from 'request'
import stream from 'stream' import stream from 'stream'
import logger from '@overleaf/logger' import logger from '@overleaf/logger'
import _ from 'lodash' import _ from 'lodash'
import BPromise from 'bluebird'
import { URL } from 'url' import { URL } from 'url'
import OError from '@overleaf/o-error' import OError from '@overleaf/o-error'
import Settings from '@overleaf/settings' import Settings from '@overleaf/settings'
@ -354,7 +354,7 @@ export function deleteProject(projectId, callback) {
) )
} }
const getProjectBlobAsync = BPromise.promisify(getProjectBlob) const getProjectBlobAsync = promisify(getProjectBlob)
class BlobStore { class BlobStore {
constructor(projectId) { constructor(projectId) {
@ -435,3 +435,15 @@ function _requestHistoryService(options, callback) {
} }
}) })
} }
export const promises = {
getMostRecentChunk: promisify(getMostRecentChunk),
getChunkAtVersion: promisify(getChunkAtVersion),
getMostRecentVersion: promisify(getMostRecentVersion),
getProjectBlob: promisify(getProjectBlob),
getProjectBlobStream: promisify(getProjectBlobStream),
sendChanges: promisify(sendChanges),
createBlobForUpdate: promisify(createBlobForUpdate),
initializeProject: promisify(initializeProject),
deleteProject: promisify(deleteProject),
}

View file

@ -7,6 +7,7 @@
* DS207: Consider shorter variations of null checks * DS207: Consider shorter variations of null checks
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/ */
import { promisify } from 'util'
import async from 'async' import async from 'async'
import metrics from '@overleaf/metrics' import metrics from '@overleaf/metrics'
import Settings from '@overleaf/settings' import Settings from '@overleaf/settings'
@ -273,3 +274,41 @@ class Lock {
}) })
} }
} }
/**
* Promisified version of runWithLock.
*
* @param {string} key
* @param {(extendLock: Function) => Promise<any>} runner
*/
async function runWithLockPromises(key, runner) {
const runnerCb = (extendLock, callback) => {
const extendLockPromises = promisify(extendLock)
runner(extendLockPromises)
.then(result => {
callback(null, result)
})
.catch(err => {
callback(err)
})
}
return new Promise((resolve, reject) => {
runWithLock(key, runnerCb, (err, result) => {
if (err) {
reject(err)
} else {
resolve(result)
}
})
})
}
export const promises = {
tryLock: promisify(tryLock),
extendLock: promisify(extendLock),
getLock: promisify(getLock),
checkLock: promisify(checkLock),
releaseLock: promisify(releaseLock),
runWithLock: runWithLockPromises,
}

View file

@ -1,4 +1,6 @@
// @ts-check // @ts-check
import { promisify } from 'util'
import Core from 'overleaf-editor-core' import Core from 'overleaf-editor-core'
import { Readable as StringStream } from 'stream' import { Readable as StringStream } from 'stream'
import BPromise from 'bluebird' import BPromise from 'bluebird'
@ -171,3 +173,9 @@ function _loadFilesLimit(snapshot, kind, blobStore) {
{ concurrency: MAX_REQUESTS } { concurrency: MAX_REQUESTS }
) )
} }
export const promises = {
getFileSnapshotStream: promisify(getFileSnapshotStream),
getProjectSnapshot: promisify(getProjectSnapshot),
getLatestSnapshot: promisify(getLatestSnapshot),
}

View file

@ -1,6 +1,6 @@
import _ from 'lodash' import _ from 'lodash'
import async from 'async' import { callbackify, promisify } from 'util'
import { promisify } from 'util' import { callbackifyMultiResult } from '@overleaf/promise-utils'
import Settings from '@overleaf/settings' import Settings from '@overleaf/settings'
import logger from '@overleaf/logger' import logger from '@overleaf/logger'
import Metrics from '@overleaf/metrics' import Metrics from '@overleaf/metrics'
@ -27,7 +27,7 @@ const keys = Settings.redis.lock.key_schema
// To add expiresAt field to existing entries in collection (choose a suitable future expiry date): // To add expiresAt field to existing entries in collection (choose a suitable future expiry date):
// db.projectHistorySyncState.updateMany({resyncProjectStructure: false, resyncDocContents: [], expiresAt: {$exists:false}}, {$set: {expiresAt: new Date("2019-07-01")}}) // db.projectHistorySyncState.updateMany({resyncProjectStructure: false, resyncDocContents: [], expiresAt: {$exists:false}}, {$set: {expiresAt: new Date("2019-07-01")}})
export function startResync(projectId, options, callback) { async function startResync(projectId, options = {}) {
// We have three options here // We have three options here
// //
// 1. If we update mongo before making the call to web then there's a // 1. If we update mongo before making the call to web then there's a
@ -39,114 +39,71 @@ export function startResync(projectId, options, callback) {
// after, causing all updates to be ignored from then on // after, causing all updates to be ignored from then on
// //
// 3. We can wrap everything in a project lock // 3. We can wrap everything in a project lock
if (typeof options === 'function') {
callback = options
options = {}
}
Metrics.inc('project_history_resync') Metrics.inc('project_history_resync')
LockManager.runWithLock( try {
keys.projectHistoryLock({ project_id: projectId }), await LockManager.promises.runWithLock(
(extendLock, releaseLock) => keys.projectHistoryLock({ project_id: projectId }),
_startResyncWithoutLock(projectId, options, releaseLock), async extendLock => {
function (error) { await _startResyncWithoutLock(projectId, options)
if (error) {
OError.tag(error)
// record error in starting sync ("sync ongoing")
ErrorRecorder.record(projectId, -1, error, () => callback(error))
} else {
callback()
} }
)
} catch (error) {
// record error in starting sync ("sync ongoing")
try {
await ErrorRecorder.promises.record(projectId, -1, error)
} catch (err) {
// swallow any error thrown by ErrorRecorder.record()
} }
) throw error
}
export function startHardResync(projectId, options, callback) {
if (typeof options === 'function') {
callback = options
options = {}
} }
}
async function startHardResync(projectId, options = {}) {
Metrics.inc('project_history_hard_resync') Metrics.inc('project_history_hard_resync')
LockManager.runWithLock( try {
keys.projectHistoryLock({ project_id: projectId }), await LockManager.promises.runWithLock(
(extendLock, releaseLock) => keys.projectHistoryLock({ project_id: projectId }),
clearResyncState(projectId, function (err) { async extendLock => {
if (err) { await clearResyncState(projectId)
return releaseLock(OError.tag(err)) await RedisManager.promises.clearFirstOpTimestamp(projectId)
} await RedisManager.promises.destroyDocUpdatesQueue(projectId)
RedisManager.clearFirstOpTimestamp(projectId, function (err) { await _startResyncWithoutLock(projectId, options)
if (err) {
return releaseLock(OError.tag(err))
}
RedisManager.destroyDocUpdatesQueue(projectId, function (err) {
if (err) {
return releaseLock(OError.tag(err))
}
_startResyncWithoutLock(projectId, options, releaseLock)
})
})
}),
function (error) {
if (error) {
OError.tag(error)
// record error in starting sync ("sync ongoing")
ErrorRecorder.record(projectId, -1, error, () => callback(error))
} else {
callback()
} }
} )
) } catch (error) {
// record error in starting sync ("sync ongoing")
await ErrorRecorder.promises.record(projectId, -1, error)
throw error
}
} }
function _startResyncWithoutLock(projectId, options, callback) { async function _startResyncWithoutLock(projectId, options) {
ErrorRecorder.recordSyncStart(projectId, function (error) { await ErrorRecorder.promises.recordSyncStart(projectId)
if (error) {
return callback(OError.tag(error))
}
_getResyncState(projectId, function (error, syncState) { const syncState = await _getResyncState(projectId)
if (error) { if (syncState.isSyncOngoing()) {
return callback(OError.tag(error)) throw new OError('sync ongoing')
} }
syncState.setOrigin(options.origin || { kind: 'history-resync' })
syncState.startProjectStructureSync()
if (syncState.isSyncOngoing()) { await WebApiManager.promises.requestResync(projectId)
return callback(new OError('sync ongoing')) await setResyncState(projectId, syncState)
} }
syncState.setOrigin(options.origin || { kind: 'history-resync' }) async function _getResyncState(projectId) {
syncState.startProjectStructureSync() const rawSyncState = await db.projectHistorySyncState.findOne({
project_id: new ObjectId(projectId.toString()),
WebApiManager.requestResync(projectId, function (error) {
if (error) {
return callback(OError.tag(error))
}
setResyncState(projectId, syncState, callback)
})
})
}) })
const syncState = SyncState.fromRaw(projectId, rawSyncState)
return syncState
} }
function _getResyncState(projectId, callback) { async function setResyncState(projectId, syncState) {
db.projectHistorySyncState.findOne( // skip if syncState is null (i.e. unchanged)
{
project_id: new ObjectId(projectId.toString()),
},
function (error, rawSyncState) {
if (error) {
return callback(OError.tag(error))
}
const syncState = SyncState.fromRaw(projectId, rawSyncState)
callback(null, syncState)
}
)
}
export function setResyncState(projectId, syncState, callback) {
if (syncState == null) { if (syncState == null) {
return callback() return
} // skip if syncState is null (i.e. unchanged) }
const update = { const update = {
$set: syncState.toRaw(), $set: syncState.toRaw(),
$push: { $push: {
@ -158,142 +115,103 @@ export function setResyncState(projectId, syncState, callback) {
}, },
$currentDate: { lastUpdated: true }, $currentDate: { lastUpdated: true },
} }
// handle different cases // handle different cases
if (syncState.isSyncOngoing()) { if (syncState.isSyncOngoing()) {
// starting a new sync // starting a new sync; prevent the entry expiring while sync is in ongoing
update.$inc = { resyncCount: 1 } update.$inc = { resyncCount: 1 }
update.$unset = { expiresAt: true } // prevent the entry expiring while sync is in ongoing update.$unset = { expiresAt: true }
} else { } else {
// successful completion of existing sync // successful completion of existing sync; set the entry to expire in the
// future
update.$set.expiresAt = new Date( update.$set.expiresAt = new Date(
Date.now() + EXPIRE_RESYNC_HISTORY_INTERVAL_MS Date.now() + EXPIRE_RESYNC_HISTORY_INTERVAL_MS
) // set the entry to expire in the future )
} }
// apply the update // apply the update
db.projectHistorySyncState.updateOne( await db.projectHistorySyncState.updateOne(
{ { project_id: new ObjectId(projectId) },
project_id: new ObjectId(projectId),
},
update, update,
{ { upsert: true }
upsert: true,
},
callback
) )
} }
export function clearResyncState(projectId, callback) { async function clearResyncState(projectId) {
db.projectHistorySyncState.deleteOne( await db.projectHistorySyncState.deleteOne({
{ project_id: new ObjectId(projectId.toString()),
project_id: new ObjectId(projectId.toString()),
},
callback
)
}
export function skipUpdatesDuringSync(projectId, updates, callback) {
_getResyncState(projectId, function (error, syncState) {
if (error) {
return callback(OError.tag(error))
}
if (!syncState.isSyncOngoing()) {
logger.debug({ projectId }, 'not skipping updates: no resync in progress')
return callback(null, updates) // don't return synsState when unchanged
}
const filteredUpdates = []
for (const update of updates) {
try {
syncState.updateState(update)
} catch (error1) {
error = OError.tag(error1)
if (error instanceof SyncError) {
return callback(error)
} else {
throw error
}
}
const shouldSkipUpdate = syncState.shouldSkipUpdate(update)
if (!shouldSkipUpdate) {
filteredUpdates.push(update)
} else {
logger.debug({ projectId, update }, 'skipping update due to resync')
}
}
callback(null, filteredUpdates, syncState)
}) })
} }
export function expandSyncUpdates( async function skipUpdatesDuringSync(projectId, updates) {
const syncState = await _getResyncState(projectId)
if (!syncState.isSyncOngoing()) {
logger.debug({ projectId }, 'not skipping updates: no resync in progress')
// don't return syncState when unchanged
return { updates, syncState: null }
}
const filteredUpdates = []
for (const update of updates) {
syncState.updateState(update)
const shouldSkipUpdate = syncState.shouldSkipUpdate(update)
if (!shouldSkipUpdate) {
filteredUpdates.push(update)
} else {
logger.debug({ projectId, update }, 'skipping update due to resync')
}
}
return { updates: filteredUpdates, syncState }
}
async function expandSyncUpdates(
projectId, projectId,
projectHistoryId, projectHistoryId,
updates, updates,
extendLock, extendLock
callback
) { ) {
const areSyncUpdatesQueued = const areSyncUpdatesQueued =
_.some(updates, 'resyncProjectStructure') || _.some(updates, 'resyncProjectStructure') ||
_.some(updates, 'resyncDocContent') _.some(updates, 'resyncDocContent')
if (!areSyncUpdatesQueued) { if (!areSyncUpdatesQueued) {
logger.debug({ projectId }, 'no resync updates to expand') logger.debug({ projectId }, 'no resync updates to expand')
return callback(null, updates) return updates
} }
_getResyncState(projectId, (error, syncState) => { const syncState = await _getResyncState(projectId)
if (error) {
return callback(OError.tag(error))
}
// compute the current snapshot from the most recent chunk // compute the current snapshot from the most recent chunk
SnapshotManager.getLatestSnapshot( const snapshotFiles = await SnapshotManager.promises.getLatestSnapshot(
projectId,
projectHistoryId
)
// check if snapshot files are valid
const invalidFiles = _.pickBy(
snapshotFiles,
(v, k) => v == null || typeof v.isEditable !== 'function'
)
if (_.size(invalidFiles) > 0) {
throw new SyncError('file is missing isEditable method', {
projectId, projectId,
projectHistoryId, invalidFiles,
(error, snapshotFiles) => { })
if (error) { }
return callback(OError.tag(error))
} const expander = new SyncUpdateExpander(
// check if snapshot files are valid projectId,
const invalidFiles = _.pickBy( snapshotFiles,
snapshotFiles, syncState.origin
(v, k) => v == null || typeof v.isEditable !== 'function' )
)
if (_.size(invalidFiles) > 0) { // expand updates asynchronously to avoid blocking
return callback( for (const update of updates) {
new SyncError('file is missing isEditable method', { await expander.expandUpdate(update)
projectId, await extendLock()
invalidFiles, }
})
) return expander.getExpandedUpdates()
}
const expander = new SyncUpdateExpander(
projectId,
snapshotFiles,
syncState.origin
)
// expand updates asynchronously to avoid blocking
const handleUpdate = (
update,
cb // n.b. lock manager calls cb asynchronously
) =>
expander.expandUpdate(update, error => {
if (error) {
return cb(OError.tag(error))
}
extendLock(cb)
})
async.eachSeries(updates, handleUpdate, error => {
if (error) {
return callback(OError.tag(error))
}
callback(null, expander.getExpandedUpdates())
})
}
)
})
} }
class SyncState { class SyncState {
@ -456,7 +374,7 @@ class SyncUpdateExpander {
return !matchedExpectedFile return !matchedExpectedFile
} }
expandUpdate(update, cb) { async expandUpdate(update) {
if (update.resyncProjectStructure != null) { if (update.resyncProjectStructure != null) {
logger.debug( logger.debug(
{ projectId: this.projectId, update }, { projectId: this.projectId, update },
@ -523,16 +441,14 @@ class SyncUpdateExpander {
expectedBinaryFiles, expectedBinaryFiles,
persistedBinaryFiles persistedBinaryFiles
) )
cb()
} else if (update.resyncDocContent != null) { } else if (update.resyncDocContent != null) {
logger.debug( logger.debug(
{ projectId: this.projectId, update }, { projectId: this.projectId, update },
'expanding resyncDocContent update' 'expanding resyncDocContent update'
) )
this.queueTextOpForOutOfSyncContents(update, cb) await this.queueTextOpForOutOfSyncContents(update)
} else { } else {
this.expandedUpdates.push(update) this.expandedUpdates.push(update)
cb()
} }
} }
@ -637,13 +553,13 @@ class SyncUpdateExpander {
} }
} }
queueTextOpForOutOfSyncContents(update, cb) { async queueTextOpForOutOfSyncContents(update) {
const pathname = UpdateTranslator._convertPathname(update.path) const pathname = UpdateTranslator._convertPathname(update.path)
const snapshotFile = this.files[pathname] const snapshotFile = this.files[pathname]
const expectedFile = update.resyncDocContent const expectedFile = update.resyncDocContent
if (!snapshotFile) { if (!snapshotFile) {
return cb(new OError('unrecognised file: not in snapshot')) throw new OError('unrecognised file: not in snapshot')
} }
// Compare hashes to see if the persisted file matches the expected content. // Compare hashes to see if the persisted file matches the expected content.
@ -664,7 +580,7 @@ class SyncUpdateExpander {
{ projectId: this.projectId, persistedHash, expectedHash }, { projectId: this.projectId, persistedHash, expectedHash },
'skipping diff because hashes match and persisted file has no ops' 'skipping diff because hashes match and persisted file has no ops'
) )
return cb() return
} }
} else { } else {
logger.debug('cannot compare hashes, will retrieve content') logger.debug('cannot compare hashes, will retrieve content')
@ -672,79 +588,104 @@ class SyncUpdateExpander {
const expectedContent = update.resyncDocContent.content const expectedContent = update.resyncDocContent.content
const computeDiff = (persistedContent, cb) => { let persistedContent
let op
logger.debug(
{ projectId: this.projectId, persistedContent, expectedContent },
'diffing doc contents'
)
try {
op = UpdateCompressor.diffAsShareJsOps(
persistedContent,
expectedContent
)
} catch (error) {
return cb(
OError.tag(error, 'error from diffAsShareJsOps', {
projectId: this.projectId,
persistedContent,
expectedContent,
})
)
}
if (op.length === 0) {
return cb()
}
update = {
doc: update.doc,
op,
meta: {
resync: true,
origin: this.origin,
ts: update.meta.ts,
pathname,
doc_length: persistedContent.length,
},
}
logger.debug(
{ projectId: this.projectId, diffCount: op.length },
'doc contents differ'
)
this.expandedUpdates.push(update)
Metrics.inc('project_history_resync_operation', 1, {
status: 'update text file contents',
})
cb()
}
// compute the difference between the expected and persisted content // compute the difference between the expected and persisted content
if (snapshotFile.load != null) { if (snapshotFile.load != null) {
WebApiManager.getHistoryId(this.projectId, (err, historyId) => { const historyId = await WebApiManager.promises.getHistoryId(
if (err) { this.projectId
return cb(OError.tag(err)) )
} const file = await snapshotFile.load(
const loadFile = snapshotFile.load( 'eager',
'eager', HistoryStoreManager.getBlobStore(historyId)
HistoryStoreManager.getBlobStore(historyId) )
) persistedContent = file.getContent()
loadFile
.then(file => computeDiff(file.getContent(), cb))
.catch(err => cb(err)) // error loading file or computing diff
})
} else if (snapshotFile.content != null) { } else if (snapshotFile.content != null) {
// use dummy content from queueAddOpsForMissingFiles for added missing files // use dummy content from queueAddOpsForMissingFiles for added missing files
computeDiff(snapshotFile.content, cb) persistedContent = snapshotFile.content
} else { } else {
cb(new OError('unrecognised file')) throw new OError('unrecognised file')
} }
let op
logger.debug(
{ projectId: this.projectId, persistedContent, expectedContent },
'diffing doc contents'
)
try {
op = UpdateCompressor.diffAsShareJsOps(persistedContent, expectedContent)
} catch (error) {
throw OError.tag(error, 'error from diffAsShareJsOps', {
projectId: this.projectId,
persistedContent,
expectedContent,
})
}
if (op.length === 0) {
return
}
update = {
doc: update.doc,
op,
meta: {
resync: true,
origin: this.origin,
ts: update.meta.ts,
pathname,
doc_length: persistedContent.length,
},
}
logger.debug(
{ projectId: this.projectId, diffCount: op.length },
'doc contents differ'
)
this.expandedUpdates.push(update)
Metrics.inc('project_history_resync_operation', 1, {
status: 'update text file contents',
})
} }
} }
export const promises = { // EXPORTS
startResync: promisify(startResync),
startHardResync: promisify(startHardResync), const startResyncCb = callbackify(startResync)
setResyncState: promisify(setResyncState), const startHardResyncCb = callbackify(startHardResync)
clearResyncState: promisify(clearResyncState), const setResyncStateCb = callbackify(setResyncState)
skipUpdatesDuringSync: promisify(skipUpdatesDuringSync), const clearResyncStateCb = callbackify(clearResyncState)
expandSyncUpdates: promisify(expandSyncUpdates), const skipUpdatesDuringSyncCb = callbackifyMultiResult(skipUpdatesDuringSync, [
'updates',
'syncState',
])
const expandSyncUpdatesCb = (
projectId,
projectHistoryId,
updates,
extendLock,
callback
) => {
const extendLockPromises = promisify(extendLock)
expandSyncUpdates(projectId, projectHistoryId, updates, extendLockPromises)
.then(result => {
callback(null, result)
})
.catch(err => {
callback(err)
})
}
export {
startResyncCb as startResync,
startHardResyncCb as startHardResync,
setResyncStateCb as setResyncState,
clearResyncStateCb as clearResyncState,
skipUpdatesDuringSyncCb as skipUpdatesDuringSync,
expandSyncUpdatesCb as expandSyncUpdates,
}
export const promises = {
startResync,
startHardResync,
setResyncState,
clearResyncState,
skipUpdatesDuringSync,
expandSyncUpdates,
} }

View file

@ -22,6 +22,7 @@
"@overleaf/logger": "*", "@overleaf/logger": "*",
"@overleaf/metrics": "*", "@overleaf/metrics": "*",
"@overleaf/o-error": "*", "@overleaf/o-error": "*",
"@overleaf/promise-utils": "*",
"@overleaf/redis-wrapper": "*", "@overleaf/redis-wrapper": "*",
"@overleaf/settings": "*", "@overleaf/settings": "*",
"async": "^3.2.2", "async": "^3.2.2",

View file

@ -162,7 +162,7 @@ describe('Syncing with web and doc-updater', function () {
], ],
error => { error => {
if (error) { if (error) {
throw error return done(error)
} }
assert( assert(
createBlob.isDone(), createBlob.isDone(),