Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
Overhang.IO committed Nov 14, 2023
2 parents b25a7e2 + 84ceed2 commit f81740f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions changelog.d/20231113_135404_r.khetani.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion tutorxqueue/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "16.0.1"
__version__ = "16.0.2"
__package_version__ = __version__

# Handle version suffix for nightly, just like tutor core.
Expand Down
3 changes: 1 addition & 2 deletions tutorxqueue/patches/local-docker-compose-jobs-services
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit f81740f

Please sign in to comment.