Skip to content

Commit

Permalink
HDDS-11564. Mark TestBlockOutputStream as flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
adoroszlai committed Oct 11, 2024
1 parent e2f2aeb commit 3348d91
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
import org.apache.hadoop.ozone.client.io.OzoneOutputStream;
import org.apache.hadoop.ozone.container.TestHelper;

import org.apache.ozone.test.tag.Flaky;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.TestInstance;
Expand Down Expand Up @@ -481,6 +482,7 @@ void testWriteMoreThanChunkSize(boolean flushDelay, boolean enablePiggybacking)

@ParameterizedTest
@MethodSource("clientParameters")
@Flaky("HDDS-11564")
void testWriteMoreThanFlushSize(boolean flushDelay, boolean enablePiggybacking) throws Exception {
OzoneClientConfig config = newClientConfig(cluster.getConf(), flushDelay, enablePiggybacking);
try (OzoneClient client = newClient(cluster.getConf(), config)) {
Expand Down Expand Up @@ -665,6 +667,7 @@ void testWriteExactlyMaxFlushSize(boolean flushDelay, boolean enablePiggybacking

@ParameterizedTest
@MethodSource("clientParameters")
@Flaky("HDDS-11564")
void testWriteMoreThanMaxFlushSize(boolean flushDelay, boolean enablePiggybacking) throws Exception {
OzoneClientConfig config = newClientConfig(cluster.getConf(), flushDelay, enablePiggybacking);
try (OzoneClient client = newClient(cluster.getConf(), config)) {
Expand Down

0 comments on commit 3348d91

Please sign in to comment.