Skip to content

Commit

Permalink
Update runner.py to work with multiDB & list_db = False
Browse files Browse the repository at this point in the history
  • Loading branch information
pcastelovigo authored Nov 13, 2023
1 parent 3300146 commit 2b2b122
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion queue_job/jobrunner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
or ``False`` if unset.
- ``ODOO_QUEUE_JOB_JOBRUNNER_DB_PASSWORD=passdb``, default ``db_password``
or ``False`` if unset.
- ``ODOO_QUEUE_JOB_JOBRUNNER_DB_NAME=firstdb,seconddb``, default ``db_name``
* Alternatively, configure the channels through the Odoo configuration
file, like:
Expand All @@ -54,6 +55,7 @@
http_auth_password = s3cr3t
jobrunner_db_host = master-db
jobrunner_db_port = 5432
jobrunner_db_name = firstdb,seconddb
jobrunner_db_user = userdb
jobrunner_db_password = passdb
Expand Down Expand Up @@ -398,7 +400,11 @@ def from_environ_or_config(cls):
return runner

def get_db_names(self):
if config["db_name"]:
if os.environ.get("ODOO_QUEUE_JOB_JOBRUNNER_DB_NAME"):
db_names = os.environ["ODOO_QUEUE_JOB_JOBRUNNER_DB_NAME"].split(",")
elif queue_job_config.get("jobrunner_db_name"):
db_names = queue_job_config["jobrunner_db_name"].split(",")
elif config["db_name"]:
db_names = config["db_name"].split(",")
else:
db_names = odoo.service.db.exp_list(True)
Expand Down

0 comments on commit 2b2b122

Please sign in to comment.