Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[ci skip] Fix for typo #6488

Merged
merged 1 commit into from
Feb 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server/jetstream_cluster_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7609,7 +7609,7 @@ func TestJetStreamClusterAccountStatsForReplicatedStreams(t *testing.T) {

// We need to account for possibility that the stream create was also on this server, hence the >= vs strict ==.
require_True(t, accStats.Received.Msgs >= 10)
require_True(t, accStats.Received.Bytes >= 1024*1204)
require_True(t, accStats.Received.Bytes >= 1024*1024)
// For sent, we will have 10 pub acks, and then should have 40 extra messages that are sent and accounted for
// during the nrg propsal to the R5 peers.
require_True(t, accStats.Sent.Msgs >= 50)
Expand Down
Loading