mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 19:11:56 +02:00
added comment about flushing to track changes
This commit is contained in:
@@ -100,6 +100,11 @@ module.exports = DocumentManager =
|
||||
|
||||
DocumentManager.flushDocIfLoaded project_id, doc_id, (error) ->
|
||||
return callback(error) if error?
|
||||
# We should flush pending ops to track-changes here but this is
|
||||
# already done in the real-time WebsocketController.leaveProject
|
||||
# method so we leave it there. Note, if you ever add the flush
|
||||
# in here be sure to do it in the background because it can take
|
||||
# a long time.
|
||||
RedisManager.removeDocFromMemory project_id, doc_id, (error) ->
|
||||
return callback(error) if error?
|
||||
callback null
|
||||
|
||||
Reference in New Issue
Block a user