Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,10 @@ puppetConfiguration() {
echo "Disabling https in nginx."
crudini --set /etc/zulip/zulip.conf application_server http_only true
fi
if [ "$POSTGRESQL_MISSING_DICTIONARIES" == "True" ] || [ "$POSTGRESQL_MISSING_DICTIONARIES" == "true" ]; then
echo "Setting zulip not to expect tsearch-extras in its target Postgres."
crudini --set /etc/zulip/zulip.conf postgresql missing_dictionaries true
fi
if [ "$QUEUE_WORKERS_MULTIPROCESS" == "True" ] || [ "$QUEUE_WORKERS_MULTIPROCESS" == "true" ]; then
echo "Setting queue workers to run in multiprocess mode ..."
crudini --set /etc/zulip/zulip.conf application_server queue_workers_multiprocess true
Expand Down