-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
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
Beats CM now handle the new response format from Kibana. #11377
Conversation
INTEGRATION_TESTS = os.environ.get('INTEGRATION_TESTS', False) | ||
# Disable because waiting artifacts from https://github.com/elastic/kibana/pull/31660 | ||
# INTEGRATION_TESTS = os.environ.get('INTEGRATION_TESTS', False) | ||
INTEGRATION_TESTS = False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
chicken-egg, we need snapshots of Kibana and ES to have the integration suite working. So I am disabling it.
Format is defined in elastic/kibana#27408 Main objective is to easier bubbling or errors and messages. ``` export interface ReturnType { error?: { message: string; code?: number; }; success: boolean; } ```
ccc8f67
to
a1784cb
Compare
Error ErrorResponse `json:"error,omitempty"` | ||
} | ||
|
||
// ErrorResponse contains human reable and machine readable information when an error happen. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace with ErrorResponse contains human readable and machine readable information when an error happens.
rebased+typo, waiting on green to merge. |
Format is defined in elastic/kibana#27408
Main objective is to easier bubbling or errors and messages.