Skip to content

Commit 3e2bc99

Browse files
Mute 2 tests in S3BlobStoreRepositoryTests
Muted testSnapshotAndRestore and testMultipleSnapshotAndRollback Relates elastic#46218 and elastic#46219
1 parent 8c1012e commit 3e2bc99

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

plugins/repository-s3/src/test/java/org/elasticsearch/repositories/s3/S3BlobStoreRepositoryTests.java

+14
Original file line numberDiff line numberDiff line change
@@ -284,4 +284,18 @@ private void handleAsError(final HttpExchange exchange, final String requestId)
284284
exchange.close();
285285
}
286286
}
287+
288+
// override here to mute only for S3, please remove this overload when un-muting
289+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/46218")
290+
@Override
291+
public void testSnapshotAndRestore() throws Exception {
292+
super.testSnapshotAndRestore();
293+
}
294+
295+
// override here to mute only for S3, pleaseremove this overload when un-muting
296+
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/46219")
297+
@Override
298+
public void testMultipleSnapshotAndRollback() throws Exception {
299+
super.testMultipleSnapshotAndRollback();
300+
}
287301
}

0 commit comments

Comments
 (0)