Skip to content

Commit

Permalink
[IMP] queue_job: Don't raise a warning for valid context
Browse files Browse the repository at this point in the history
As the 'queue_job__no_delay' context key is the valid one to use,
don't raise warnings during tests, but log it as information level.
  • Loading branch information
rousseldenis committed Sep 10, 2024
1 parent 7e5efe7 commit d84e1a4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion queue_job/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import logging
import os

from odoo.tools import config

_logger = logging.getLogger(__name__)


Expand Down Expand Up @@ -36,5 +38,8 @@ def must_run_without_delay(env):
return True

if env.context.get("queue_job__no_delay"):
_logger.warning("`queue_job__no_delay` ctx key found. NO JOB scheduled.")
if config.get("test_enable"):
_logger.info("`queue_job__no_delay` ctx key found. NO JOB scheduled.")
else:
_logger.warning("`queue_job__no_delay` ctx key found. NO JOB scheduled.")

Check warning on line 44 in queue_job/utils.py

View check run for this annotation

Codecov / codecov/patch

queue_job/utils.py#L44

Added line #L44 was not covered by tests
return True

0 comments on commit d84e1a4

Please sign in to comment.