mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-23 01:12:27 +00:00
extract clearup func so it always runs
This commit is contained in:
parent
f8e9df9130
commit
4825a1f557
1 changed files with 6 additions and 2 deletions
|
@ -13,6 +13,9 @@ db = mongojs(Settings.mongo?.url, ['notifications'])
|
|||
module.exports =
|
||||
check : (callback)->
|
||||
user_id = ObjectId()
|
||||
cleanupNotifications = (callback)->
|
||||
db.notifications.remove {user_id:user_id}, callback
|
||||
|
||||
notification_key = "smoke-test-notification-#{ObjectId()}"
|
||||
getOpts = (endPath)-> {url:"http://localhost:#{port}/user/#{user_id}#{endPath}", timeout:5000}
|
||||
logger.log user_id:user_id, opts:getOpts(), key:notification_key, user_id:user_id, "Health Check: running"
|
||||
|
@ -43,7 +46,8 @@ module.exports =
|
|||
async.series jobs, (err, body)->
|
||||
if err?
|
||||
logger.err err:err, "Health Check: error running health check"
|
||||
return callback(err)
|
||||
cleanupNotifications ->
|
||||
return callback(err)
|
||||
else
|
||||
notification_id = body[1][0]._id
|
||||
notification_key = body[1][0].key
|
||||
|
@ -59,4 +63,4 @@ module.exports =
|
|||
if err?
|
||||
logger.err err, opts, "Health Check: error cleaning up notification"
|
||||
return callback(err)
|
||||
db.notifications.remove {user_id:user_id}, callback
|
||||
cleanupNotifications callback
|
||||
|
|
Loading…
Reference in a new issue