Merge pull request #27592 from overleaf/bg-update-check-mongo-script-to-use-docs

update mongodb permission error message to include documentation link

GitOrigin-RevId: 89dc1ef8388f83531f9875e034d145a6de6a075b
This commit is contained in:
Brian Gough
2025-08-01 15:00:05 +01:00
committed by Copybot
parent a280a07f4b
commit 86e3fd468e

View File

@@ -24,8 +24,9 @@ function handleUnauthorizedError(err, feature) {
console.warn(`Warning: failed to check ${feature} (not authorised)`)
if (!shouldSkipAdminChecks()) {
console.error(
`Please ensure the MongoDB user has the required admin permissions, or\n` +
`set the environment variable ${OVERRIDE_ENV_VAR_NAME}=true to ignore this check.`
`Please ensure the MongoDB user has the required permissions, for more information see
https://docs.overleaf.com/on-premises/maintenance/updating-mongodb#creating-a-custom-role
or set the environment variable ${OVERRIDE_ENV_VAR_NAME}=true to ignore this check.`
)
process.exit(1)
}