Merge remote-tracking branch 'origin/master' into nightly

This commit is contained in:
Overhang.IO 2023-11-14 23:05:48 +00:00
commit f81740fa40
3 changed files with 3 additions and 3 deletions

View File

@ -0,0 +1 @@
- [Bugfix] Fix "Error: service "xqueue-job" depends on undefined service mysql: invalid compose project" - add conditional statement to check whether the mysql service is enabled or if the user is using an external mysql instance. (by @ravikhetani)

View File

@ -1,4 +1,4 @@
__version__ = "16.0.1"
__version__ = "16.0.2"
__package_version__ = __version__
# Handle version suffix for nightly, just like tutor core.

View File

@ -4,5 +4,4 @@ xqueue-job:
- ../plugins/xqueue/apps/settings/tutor.py:/openedx/xqueue/xqueue/tutor.py:ro
environment:
DJANGO_SETTINGS_MODULE: xqueue.tutor
depends_on:
- mysql
depends_on: {{ [("mysql", RUN_MYSQL)]|list_if }}