Skip to content

Commit

Permalink
Fix minor grammatical error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnweldon committed Jan 22, 2024
1 parent e8fede9 commit e779bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/server_report_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func (c *SrvReportCmd) reportJetStream(_ *fisk.ParseContext) error {
case c.isFiltered():
case len(jszResponses) > 0 && cluster == nil:
fmt.Println()
fmt.Printf("WARNING: No cluster meta leader found. The cluster expects %d nodes but only %d responded. JetStream operation require at least %d up nodes.", expectedClusterSize, len(jszResponses), expectedClusterSize/2+1)
fmt.Printf("WARNING: No cluster meta leader found. The cluster expects %d nodes but only %d responded. JetStream operation requires at least %d up nodes.", expectedClusterSize, len(jszResponses), expectedClusterSize/2+1)
fmt.Println()
default:
cluster.Replicas = append(cluster.Replicas, &server.PeerInfo{
Expand Down

0 comments on commit e779bcd

Please sign in to comment.