-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[HLRC] Add Start/Stop Watch Service APIs. #34317
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
Conversation
|
Pinging @elastic/es-core-infra |
hub-cap
left a comment
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.
Easy review to do. Thanks muchos. Please just update the docs and consider (nit) taking out those constructors. Im going to approve this, assuming you will be DRY'ing the docs pages and running the docs build locally as well. Ping me if you want a re-review.
|
|
||
| public class StartWatchServiceRequest implements Validatable { | ||
|
|
||
| public StartWatchServiceRequest() { |
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.
Do we need default constructors here?
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.
Removed.
|
|
||
| public class StopWatchServiceRequest implements Validatable { | ||
|
|
||
| public StopWatchServiceRequest() { |
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.
default constructor?
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.
Removed.
| @@ -0,0 +1,53 @@ | |||
| [[java-rest-high-watcher-start-watch-service]] | |||
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.
These have a new tidier format. See #34203 for a much more concise version of the docs. Pls do this for both of the asciidoc pages you have added
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.
Done.
|
@hub-cap Thanks for the review! Will commit once CI passes. |
This adds both the start water service and stop watcher service apis to the HLRC. Includes new request objects, tests, and documentation.