1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-18 14:58:21 +02:00

Merge pull request #285 from overleaf/jpa-mongo-version

Surface MONGO_VERSION from bin/doctor
This commit is contained in:
Jakob Ackermann 2024-08-27 11:26:06 +02:00 committed by GitHub
commit b7af392f9a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,9 @@
# Changelog
## 2024-08-27
### Added
- Surface `MONGO_VERSION` from `bin/doctor`
## 2024-08-20
### Fixed
- Fix unquoting of variables (e.g. `ALL_TEX_LIVE_DOCKER_IMAGES`)

View file

@ -242,6 +242,9 @@ function check_config_files() {
if [[ "${MONGO_IMAGE:-null}" != "null" ]]; then
print_point 2 "MONGO_IMAGE: $MONGO_IMAGE"
fi
if [[ "${MONGO_VERSION:-null}" != "null" ]]; then
print_point 2 "MONGO_VERSION: $MONGO_VERSION"
fi
if [[ "${MONGO_DATA_PATH:-null}" != "null" ]]; then
print_point 2 "MONGO_DATA_PATH: $MONGO_DATA_PATH"
fi