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

Sandboxed Compiles is available for Server Pro only

This commit is contained in:
Jakob Ackermann 2024-07-29 16:56:23 +01:00
parent a61d9ebff5
commit 3e91fad9c0
No known key found for this signature in database
GPG key ID: 30C56800FCA3828A
3 changed files with 6 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changelog
## 2024-07-29
### Fixed
- Sandboxed Compiles is available for Server Pro only
## 2024-07-17
### Added
- Updated default [`version`](https://github.com/overleaf/toolkit/blob/master/lib/config-seed/version) to `5.1.0`.

View file

@ -28,7 +28,7 @@ function build_environment() {
if [[ $MONGO_ENABLED == "true" ]]; then
set_mongo_vars
fi
if [[ $SIBLING_CONTAINERS_ENABLED == "true" ]]; then
if [[ $SERVER_PRO == "true" && "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then
set_sibling_containers_vars
fi
if [[ $NGINX_ENABLED == "true" ]]; then

2
bin/up
View file

@ -84,7 +84,7 @@ function __main__() {
initiate_mongo_replica_set
fi
if [[ "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then
if [[ $SERVER_PRO == "true" && "$SIBLING_CONTAINERS_ENABLED" == "true" ]]; then
pull_sandboxed_compiles
fi