netty: ignore flaky max connection age tests

#2898
This commit is contained in:
ZHANG Dapeng 2017-04-10 16:06:07 -07:00 committed by GitHub
parent b56a728502
commit f1de741a2a
1 changed files with 3 additions and 0 deletions

View File

@ -549,6 +549,7 @@ public class NettyServerHandlerTest extends NettyHandlerTestBase<NettyServerHand
}
@Test
@Ignore // Flaky. TODO(zdapeng): fix https://github.com/grpc/grpc-java/issues/2898
public void maxConnectionAge_goAwaySent() throws Exception {
maxConnectionAgeInNanos = TimeUnit.MILLISECONDS.toNanos(10L);
setUp();
@ -567,6 +568,7 @@ public class NettyServerHandlerTest extends NettyHandlerTestBase<NettyServerHand
}
@Test
@Ignore // Flaky. TODO(zdapeng): fix https://github.com/grpc/grpc-java/issues/2898
public void maxConnectionAgeGrace_channelStillOpenDuringGracePeriod() throws Exception {
maxConnectionAgeInNanos = TimeUnit.MILLISECONDS.toNanos(10L);
maxConnectionAgeGraceInNanos = TimeUnit.MINUTES.toNanos(30L);
@ -588,6 +590,7 @@ public class NettyServerHandlerTest extends NettyHandlerTestBase<NettyServerHand
}
@Test
@Ignore // Flaky. TODO(zdapeng): fix https://github.com/grpc/grpc-java/issues/2898
public void maxConnectionAgeGrace_channelClosedAfterGracePeriod() throws Exception {
maxConnectionAgeInNanos = TimeUnit.MILLISECONDS.toNanos(10L);
maxConnectionAgeGraceInNanos = TimeUnit.MILLISECONDS.toNanos(10L);