We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ce11db commit b985979Copy full SHA for b985979
tests/Elasticsearch/Tests/Utility.php
@@ -126,7 +126,6 @@ private static function wipeCluster(Client $client): void
126
self::wipeRollupJobs($client);
127
self::waitForPendingRollupTasks($client);
128
}
129
-
130
if (version_compare(self::getVersion($client), '7.3.99') > 0) {
131
self::deleteAllSLMPolicies($client);
132
@@ -561,8 +560,7 @@ private static function deleteAllTasks(Client $client): void
561
560
foreach ($tasks['nodes'] as $node => $value) {
562
foreach ($value['tasks'] as $id => $data) {
563
$client->tasks()->cancel([
564
- 'task_id' => $id,
565
- 'wait_for_completion' => true
+ 'task_id' => $id
566
]);
567
568
0 commit comments