We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I trying get the health of a source then HTTP response is the malformed JSON:
-> GET -> http://127.0.0.1:9999/api/v2/sources/0388807246787000/health <- 200 <- OK <- { "name": "sources", message: "source is healthy", "status": "pass", "checks": [] }
The message property doesn't have quotation marks.
message
The error can be fixed by replacing msg := with:
msg := `{"name":"sources", "message":"source is %shealthy","status":"%s","checks":[]}`
The text was updated successfully, but these errors were encountered:
goller
kelwang
Successfully merging a pull request may close this issue.
When I trying get the health of a source then HTTP response is the malformed JSON:
The
message
property doesn't have quotation marks.The error can be fixed by replacing msg := with:
The text was updated successfully, but these errors were encountered: