You may see the following warning in your Odoo logs or build output:
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:
Comment out custom parameters in
odoo.conf(includingqueue_job_channels, queue_job_scheme, queue_job_host, queue_job_host)Restart Odoo using ‘odoosh-restart http’
Run the build
Uncomment the parameters again
Restart Odoo once again using ‘odoosh-restart http’
What’s next?
See also these articles: