Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
Signed-off-by: Neil Shen <[email protected]>
  • Loading branch information
overvenus committed Jan 3, 2023
1 parent 442aa60 commit 8b583d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/cmd/server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func TestParseCfg(t *testing.T) {
ServerMaxPendingMessageCount: 102400,
ServerAckInterval: config.TomlDuration(time.Millisecond * 100),
ServerWorkerPoolSize: 4,
MaxRecvMsgSize: 268435456,
MaxRecvMsgSize: 256 * 1024 * 1024,
},
Scheduler: &config.SchedulerConfig{
HeartbeatTick: 2,
Expand Down Expand Up @@ -514,7 +514,7 @@ cert-allowed-cn = ["dd","ee"]
ServerMaxPendingMessageCount: 102400,
ServerAckInterval: config.TomlDuration(time.Millisecond * 100),
ServerWorkerPoolSize: 4,
MaxRecvMsgSize: 268435456,
MaxRecvMsgSize: 256 * 1024 * 1024,
},
Scheduler: &config.SchedulerConfig{
HeartbeatTick: 2,
Expand Down Expand Up @@ -581,7 +581,7 @@ unknown3 = 3
ServerMaxPendingMessageCount: 102400,
ServerAckInterval: config.TomlDuration(time.Millisecond * 100),
ServerWorkerPoolSize: 4,
MaxRecvMsgSize: 268435456,
MaxRecvMsgSize: 256 * 1024 * 1024,
},
Scheduler: &config.SchedulerConfig{
HeartbeatTick: 2,
Expand Down

0 comments on commit 8b583d9

Please sign in to comment.