-
Notifications
You must be signed in to change notification settings - Fork 25k
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
TransportGetTaskAction: Wait for the task asynchronously #93375
Merged
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
a3c20f3
TransportGetTaskAction: Wait for the task asynchronously
arteam 4633906
Remove unused method waitForTaskCompletion
arteam a8eba99
Don't fork waitedForCompletionListener
arteam 8d79499
Remove unused imports
arteam 5469643
Merge branch 'main' into transport-get-task-action-async
elasticmachine d80ffb0
Update server/src/main/java/org/elasticsearch/action/admin/cluster/no…
arteam d39b976
Inherit the warning from the previous task
arteam 8d0b6a1
Merge remote-tracking branch 'origin/main' into transport-get-task-ac…
arteam 0501970
Propagate failure if task has been cancelled due timeout
arteam 1445188
Ignore reindex/30_search/Sorting deprecated wait_for_completion false
arteam c0f3883
Merge branch 'main' into transport-get-task-action-async
elasticmachine 8b67372
Update docs/changelog/93375.yaml
arteam 9bd2539
Update server/src/main/java/org/elasticsearch/action/admin/cluster/no…
arteam 0978a52
Improve naming
arteam 7db58ea
Add missed import
arteam 395c808
Revert keeping warnings for getTask
arteam 65be7c5
Merge remote-tracking branch 'origin/main' into transport-get-task-ac…
arteam 9f6a7bb
Unmute blocking the thread pool
arteam 55f347f
Revert "Unmute blocking the thread pool"
arteam 9073672
Merge remote-tracking branch 'origin/main' into transport-get-task-ac…
arteam b9f62d1
Merge remote-tracking branch 'origin/main' into transport-get-task-ac…
arteam 10e8958
Merge remote-tracking branch 'origin/main' into transport-get-task-ac…
arteam 4c5a55f
Revert
DaveCTurner f50e739
Stop preserving response headers
DaveCTurner b3f415a
Remove bogus test comment
DaveCTurner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
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.
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.
Hm now that I look at this again, with these changes we're not using the
GENERIC
pool any more (indeed there's no forking at all when waiting for completion) so this line doesn't make sense. We can just drop this (and therefore inlineflushThreadPool
at its only other call-site).