Open
Conversation
Co-authored-by: Kevin Pollet <pollet.kevin@gmail.com>
Co-authored-by: Kevin Pollet <pollet.kevin@gmail.com>
…to be able to use it for example to send jsonrpc requests like this one that works for all Odoo versions
services:
odoo-2abc75a5:
loadBalancer:
servers:
- url: http://localhost:8069
healthcheck:
path: "/jsonrpc"
method: "POST"
interval: "10s"
timeout: "3s"
headers:
Content-Type: "application/json"
body: '{"jsonrpc": "2.0","method": "call", "params": {"service": "db", "method": "db_exist", "args": ["your_db_name"]}}'
0f900be to
9e7b90d
Compare
Contributor
|
Hey @aek, Thanks for this! We've set this to "review" and will review the code. |
…figuration/other-providers/file.toml Add body field to health check configuration.
as suggested by mmatur let's make it more open Co-authored-by: Michael <mmatur@users.noreply.github.com>
Co-authored-by: Michael <mmatur@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR do?
This allow to define a body in the healthcheck of a service in order to be able to use it for example to send jsonrpc requests like this one that works for all Odoo versions
Motivation
The need to be able to send jsonrpc requests to healthcheck Odoo instances that works for all the Odoo versions available
I have also seen that this was already requested in #10055
More