From a071cd74bc71bbde0f43148c38cb7169bc39c765 Mon Sep 17 00:00:00 2001 From: Andrew Rumble Date: Thu, 15 Jan 2026 11:15:41 +0000 Subject: [PATCH] Merge pull request #30784 from overleaf/revert-30675-ar-jpa-log-missing-history-id-docupdater Revert "[document-updater] add additional logging when doc is missing projectHistoryId" GitOrigin-RevId: 725508a8f88ad3354b8b4644f4ee1e91efbecde2 --- services/document-updater/app/js/PersistenceManager.js | 7 ------- services/document-updater/app/js/RedisManager.js | 7 ------- 2 files changed, 14 deletions(-) diff --git a/services/document-updater/app/js/PersistenceManager.js b/services/document-updater/app/js/PersistenceManager.js index c357812326..6e832f9aa7 100644 --- a/services/document-updater/app/js/PersistenceManager.js +++ b/services/document-updater/app/js/PersistenceManager.js @@ -102,13 +102,6 @@ function getDoc(projectId, docId, options = {}, _callback) { body.ranges = {} } - if (!body.projectHistoryId) { - logger.warn( - { projectId, docId }, - 'projectHistoryId not found for doc from web' - ) - } - callback( null, body.lines, diff --git a/services/document-updater/app/js/RedisManager.js b/services/document-updater/app/js/RedisManager.js index 84bc288872..1dc20fdf38 100644 --- a/services/document-updater/app/js/RedisManager.js +++ b/services/document-updater/app/js/RedisManager.js @@ -282,13 +282,6 @@ const RedisManager = { }) } - if (!projectHistoryId) { - logger.warn( - { docId, projectId }, - 'projectHistoryId not found for doc in Redis' - ) - } - return { lines: docLines, version,