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.
Executions worker pool. It follows the same approach we used in the Collector data pipeline in the past.
The PR adds:
/api/execute
endpoint to schedule new execution events. By now, it only accepts a{"id": 1}
kind of struct. We will decide the contract between the server and runner later on, but I assume an ID will come.not possible to execute
kind of answers. The channel size is not the workers number. It is only used to know if we need to reply with errored message to the POST request or notThe PR doesn't implement yet the checks execution. It just have a dummy
Execute
function.