From 89bc2e0b280f390876fcf2112b0d2d64b968fb21 Mon Sep 17 00:00:00 2001 From: Thomas Date: Wed, 21 Feb 2024 17:38:22 +0100 Subject: [PATCH] Merge pull request #17251 from overleaf/tm-raise-history-diff-max-chunks Raise MAX_CHUNK_REQUESTS to 10 in DiffManager GitOrigin-RevId: e88960bbd5237f65375a830147783dcfa99ec220 --- services/project-history/app/js/DiffManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/project-history/app/js/DiffManager.js b/services/project-history/app/js/DiffManager.js index 80e80f9351..75cf9afa56 100644 --- a/services/project-history/app/js/DiffManager.js +++ b/services/project-history/app/js/DiffManager.js @@ -9,7 +9,7 @@ import * as WebApiManager from './WebApiManager.js' import * as ChunkTranslator from './ChunkTranslator.js' import * as Errors from './Errors.js' -let MAX_CHUNK_REQUESTS = 5 +let MAX_CHUNK_REQUESTS = 10 /** * Container for functions that need to be mocked in tests