How to Fix Odoo 19 Warning: “unknown option ‘queue_job_channels’”

How to Fix Odoo 19 Warning: “unknown option ‘queue_job_channels'”

You may see the following warning in your Odoo logs or build output:

image-20260402-171657.png

Why This Warning Appears

Starting with Odoo 19, Odoo added validation of parameters in the odoo.conf file. Odoo now checks configuration options and flags anything it does not recognize as “unknown” or “suspicious”

VentorTech connectors use additional parameters (such as queue_job_channels) for background job processing via the integration_queue_job module

Odoo does not recognize these parameters, so it logs a warning


Is This a Problem?

No — this warning is completely harmless

  • It does not affect Odoo performance

  • It does not break the connector

  • It does not impact background job processing

As long as you do not see other related errors, everything is working correctly.


Can This Warning Be Removed?

Unfortunately, there is no clean way to fully suppress this warning. If you want to remove warnings from build logs (e.g., on Odoo.sh), you can follow these steps:

  1. Comment out custom parameters in odoo.conf (including queue_job_channels, queue_job_scheme, queue_job_host, queue_job_host)

    image-20260402-172402.png
  2. Restart Odoo using ‘odoosh-restart http’

  3. Run the build

  4. Uncomment the parameters again

  5. Restart Odoo once again using ‘odoosh-restart http’

What’s next?

See also these articles:

Related Posts