Skip to content

Commit

Permalink
Fix flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zoewangg committed Feb 20, 2024
1 parent 5fed8ca commit 1f5f9ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void verifyConnection(Consumer<ResponseInputStream<StreamingOutputOperationRespo

private static class Server extends ChannelInitializer<Channel> {
private static final byte[] CONTENT = ("{ "
+ "\"foo\": " + RandomStringUtils.randomAscii(1024)
+ "\"foo\": " + RandomStringUtils.randomAscii(1024 * 1024 * 10)
+ "}").getBytes(StandardCharsets.UTF_8);
private ServerBootstrap bootstrap;
private ServerSocketChannel serverSock;
Expand Down

0 comments on commit 1f5f9ad

Please sign in to comment.