Merge pull request #13115 from overleaf/msm-remove-track-changes-sp

Remove track-changes references from CE

GitOrigin-RevId: 07ec4aebaf982bf6607a9e55e51e42c9fac90624
This commit is contained in:
Miguel Serrano
2023-05-25 10:32:59 +02:00
committed by Copybot
parent 76d0d82e74
commit 82d7264c32
7 changed files with 2 additions and 52 deletions

View File

@@ -118,20 +118,6 @@ const settings = {
blockingKey({ doc_id }) {
return `Blocking:${doc_id}`
},
// track-changes:lock
historyLock({ doc_id }) {
return `HistoryLock:${doc_id}`
},
historyIndexLock({ project_id }) {
return `HistoryIndexLock:${project_id}`
},
// track-changes:history
uncompressedHistoryOps({ doc_id }) {
return `UncompressedHistoryOps:${doc_id}`
},
docsWithHistoryOps({ project_id }) {
return `DocsWithHistoryOps:${project_id}`
},
// realtime
clientsInProject({ project_id }) {
return `clients_in_project:${project_id}`
@@ -142,7 +128,7 @@ const settings = {
},
}),
fairy: redisConfig,
// track-changes and document-updater
// document-updater
realtime: redisConfig,
documentupdater: redisConfig,
lock: redisConfig,
@@ -167,10 +153,6 @@ const settings = {
},
},
trackchanges: {
continueOnError: true,
},
// Local disk caching
// ------------------
path: {

View File

@@ -1,9 +0,0 @@
#!/bin/bash
NODE_PARAMS=""
if [ "$DEBUG_NODE" == "true" ]; then
echo "running debug - track-changes"
NODE_PARAMS="--inspect=0.0.0.0:30150"
fi
exec /sbin/setuser www-data /usr/bin/node $NODE_PARAMS /overleaf/services/track-changes/app.js >> /var/log/sharelatex/track-changes.log 2>&1

View File

@@ -14,9 +14,6 @@ module.exports = [
{
name: 'filestore'
},
{
name: 'track-changes'
},
{
name: 'docstore'
},