Skip to content

Commit d905f6b

Browse files
committed
Remove AwaitsFixes that are referencing a closed issue
1 parent 1da6ea4 commit d905f6b

File tree

55 files changed

+0
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+0
-75
lines changed

modules/data-streams/src/internalClusterTest/java/org/elasticsearch/datastreams/DataStreamsSnapshotsIT.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,6 @@ public void testPartialRestoreSnapshotThatIncludesDataStream() {
11271127
* a random parameter of the test, but because of #107515 it fails when we include the global state. Keep them
11281128
* separate until this is fixed.
11291129
*/
1130-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107515")
11311130
public void testPartialRestoreSnapshotThatIncludesDataStreamWithGlobalState() {
11321131
final String snapshot = "test-snapshot";
11331132
final String indexWithoutDataStream = "test-idx-no-ds";
@@ -1259,7 +1258,6 @@ public void testExcludeDSFromSnapshotWhenExcludingItsIndices() {
12591258
* a random parameter of the test, but because of #107515 it fails when we include the global state. Keep them
12601259
* separate until this is fixed.
12611260
*/
1262-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107515")
12631261
public void testExcludeDSFromSnapshotWhenExcludingItsIndicesWithGlobalState() {
12641262
final String snapshot = "test-snapshot";
12651263
final String indexWithoutDataStream = "test-idx-no-ds";
@@ -1432,7 +1430,6 @@ public void testWarningHeaderAbsentOnRestoreWithTemplates() throws Exception {
14321430
/**
14331431
* This test is muted as it's awaiting the same fix as {@link #testPartialRestoreSnapshotThatIncludesDataStreamWithGlobalState()}
14341432
*/
1435-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107515")
14361433
public void testWarningHeaderOnRestoreTemplateFromSnapshot() throws Exception {
14371434
String datastreamName = "ds";
14381435

qa/multi-cluster-search/src/test/java/org/elasticsearch/search/CCSDuelIT.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,6 @@ public void testFieldCollapsingSortByField() throws Exception {
670670
}
671671
}
672672

673-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/40005")
674673
public void testTermsAggs() throws Exception {
675674
assumeMultiClusterSetup();
676675
{
@@ -685,7 +684,6 @@ public void testTermsAggs() throws Exception {
685684
}
686685
}
687686

688-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/40005")
689687
public void testTermsAggsWithProfile() throws Exception {
690688
assumeMultiClusterSetup();
691689
{

qa/packaging/src/test/java/org/elasticsearch/packaging/test/ArchiveGenerateInitialCredentialsTests.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ public void test30NoAutogenerationWhenDaemonized() throws Exception {
7878
stopElasticsearch();
7979
}
8080

81-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/84407")
8281
public void test40VerifyAutogeneratedCredentials() throws Exception {
8382
/* Windows issue awaits fix: https://github.com/elastic/elasticsearch/issues/49340 */
8483
assumeTrue("expect command isn't on Windows", distribution.platform != Distribution.Platform.WINDOWS);
@@ -97,7 +96,6 @@ public void test40VerifyAutogeneratedCredentials() throws Exception {
9796
stopElasticsearch();
9897
}
9998

100-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/84407")
10199
public void test50CredentialAutogenerationOnlyOnce() throws Exception {
102100
/* Windows issue awaits fix: https://github.com/elastic/elasticsearch/issues/49340 */
103101
assumeTrue("expect command isn't on Windows", distribution.platform != Distribution.Platform.WINDOWS);

server/src/internalClusterTest/java/org/elasticsearch/indices/recovery/DanglingIndicesIT.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,6 @@ public void testMustAcceptDataLossToImportDanglingIndex() throws Exception {
176176
* other will be considered dangling, and can therefore be listed and
177177
* deleted through the API
178178
*/
179-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/108288")
180179
public void testDanglingIndexCanBeDeleted() throws Exception {
181180
final Settings settings = buildSettings(1, true);
182181
internalCluster().startNodes(3, settings);

server/src/internalClusterTest/java/org/elasticsearch/readiness/ReadinessClusterIT.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ private void expectMasterNotFound() {
125125
);
126126
}
127127

128-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/108613")
129128
public void testReadinessDuringRestarts() throws Exception {
130129
internalCluster().setBootstrapMasterNodeIndex(0);
131130
writeFileSettings(testJSON);

server/src/internalClusterTest/java/org/elasticsearch/search/SearchCancellationIT.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,6 @@ public void testCancelMultiSearch() throws Exception {
238238
}
239239
}
240240

241-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/99929")
242241
public void testCancelFailedSearchWhenPartialResultDisallowed() throws Exception {
243242
// Have at least two nodes so that we have parallel execution of two request guaranteed even if max concurrent requests per node
244243
// are limited to 1

server/src/internalClusterTest/java/org/elasticsearch/search/SearchTimeoutIT.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ private void indexDocs() {
5353
refresh("test");
5454
}
5555

56-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/98369")
5756
public void testTopHitsTimeout() {
5857
indexDocs();
5958
SearchResponse searchResponse = prepareSearch("test").setTimeout(new TimeValue(10, TimeUnit.MILLISECONDS))
@@ -68,7 +67,6 @@ public void testTopHitsTimeout() {
6867
assertThat(searchResponse.getHits().getHits().length, greaterThan(0));
6968
}
7069

71-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/98053")
7270
public void testAggsTimeout() {
7371
indexDocs();
7472
SearchResponse searchResponse = prepareSearch("test").setTimeout(new TimeValue(10, TimeUnit.MILLISECONDS))

server/src/internalClusterTest/java/org/elasticsearch/search/ccs/CrossClusterIT.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ public void testProxyConnectionDisconnect() throws Exception {
189189
}
190190
}
191191

192-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/108061")
193192
public void testCancel() throws Exception {
194193
assertAcked(client(LOCAL_CLUSTER).admin().indices().prepareCreate("demo"));
195194
indexDocs(client(LOCAL_CLUSTER), "demo");

server/src/test/java/org/elasticsearch/common/util/concurrent/ThreadContextTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,6 @@ public void testResponseHeaders() {
639639
}
640640
}
641641

642-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/112256")
643642
public void testDropWarningsExceedingMaxSettings() {
644643
Settings settings = Settings.builder()
645644
.put(HttpTransportSettings.SETTING_HTTP_MAX_WARNING_HEADER_COUNT.getKey(), 1)

server/src/test/java/org/elasticsearch/index/mapper/LongFieldMapperTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ protected Number randomNumber() {
116116
return randomDoubleBetween(Long.MIN_VALUE, Long.MAX_VALUE, true);
117117
}
118118

119-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/70585")
120119
public void testFetchCoerced() throws IOException {
121120
assertFetch(randomFetchTestMapper(), "field", 3.783147882954537E18, randomFetchTestFormat());
122121
}

0 commit comments

Comments
 (0)