Skip to content

Commit

Permalink
Revert unintentional changes.
Browse files Browse the repository at this point in the history
Signed-off-by: Cody Littley <[email protected]>
  • Loading branch information
cody-littley committed Oct 3, 2024
1 parent 54af37a commit 8df796c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/ratelimit/limiter_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func RatelimiterCLIFlags(envPrefix string, flagPrefix string) []cli.Flag {
},
cli.BoolFlag{
Name: common.PrefixFlag(flagPrefix, CountFailedFlagName),
Usage: "DisperseCount failed requests",
Usage: "Count failed requests",
EnvVar: common.PrefixEnvVar(envPrefix, "COUNT_FAILED"),
},
cli.IntFlag{
Expand Down
2 changes: 1 addition & 1 deletion disperser/apiserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (s *DispersalServer) DisperseBlobAuthenticated(stream pb.Disperser_Disperse
resultCh := make(chan *pb.AuthenticatedRequest)
errCh := make(chan error)

// Start stream.Recv() in a goroutine
// Run stream.Recv() in a goroutine
go func() {
in, err := stream.Recv()
if err != nil {
Expand Down

0 comments on commit 8df796c

Please sign in to comment.