flush documents to mongo on incremental compiles

This commit is contained in:
Brian Gough 2017-08-09 15:47:44 +01:00
parent 7eb1c01994
commit ddecd26718

View file

@ -174,9 +174,14 @@ module.exports = ClsiManager =
ClsiManager._finaliseRequest project_id, options, project, docs, files, callback
_getContentFromDocUpdater: (project_id, callback = (error, docs) ->) ->
DocumentUpdaterHandler.getProjectDocs project_id, (error, docs) ->
# Workaround: for now, always flush project to mongo on compile
# until we have automatic periodic flushing on the docupdater
# side, to prevent documents staying in redis too long.
DocumentUpdaterHandler.flushProjectToMongo project_id, (error) ->
return callback(error) if error?
callback(null, docs)
DocumentUpdaterHandler.getProjectDocs project_id, (error, docs) ->
return callback(error) if error?
callback(null, docs)
_getContentFromMongo: (project_id, callback = (error, docs, files) ->) ->
DocumentUpdaterHandler.flushProjectToMongo project_id, (error) ->