From 71e72c6aa1021c4ec40802fb0e53cf3b1103a7c8 Mon Sep 17 00:00:00 2001 From: Jay Yu <103467857+jayy04@users.noreply.github.com> Date: Mon, 9 Dec 2024 18:05:46 -0500 Subject: [PATCH] fix test --- protocol/app/flags/flags_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocol/app/flags/flags_test.go b/protocol/app/flags/flags_test.go index 8b3ed1a8f4..b4107335b1 100644 --- a/protocol/app/flags/flags_test.go +++ b/protocol/app/flags/flags_test.go @@ -257,8 +257,8 @@ func TestGetFlagValuesFromOptions(t *testing.T) { expectedGrpcEnable: true, expectedGrpcStreamingEnable: false, expectedGrpcStreamingFlushMs: 50, - expectedGrpcStreamingBatchSize: 10000, - expectedGrpcStreamingMaxChannelBufferSize: 10000, + expectedGrpcStreamingBatchSize: 100_000, + expectedGrpcStreamingMaxChannelBufferSize: 100_000, expectedWebsocketEnabled: false, expectedWebsocketPort: 9092, expectedFullNodeStreamingSnapshotInterval: 0,