From 215a939d4e37f21840e7bddea78e6fd5894bb348 Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Fri, 8 Sep 2017 13:43:22 +0100 Subject: [PATCH] add comment about log.error for excludeVersions --- services/document-updater/app/coffee/ProjectManager.coffee | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/document-updater/app/coffee/ProjectManager.coffee b/services/document-updater/app/coffee/ProjectManager.coffee index 6aa7b14434..a6621d1be0 100644 --- a/services/document-updater/app/coffee/ProjectManager.coffee +++ b/services/document-updater/app/coffee/ProjectManager.coffee @@ -87,6 +87,8 @@ module.exports = ProjectManager = return cb(error) # skip getting the doc if we already have that version if version? and version is excludeVersions[doc_id] + # not currently using excludeVersions so we shouldn't get here! + # change to logger.log when this code path is in use logger.error err: error, project_id: project_id, doc_id: doc_id, version: version, "skipping doc version in getProjectDocs" return cb() # otherwise get the doc lines from redis