Skip to content

Commit

Permalink
Sarthak | Ignores an error in fmt.Fprintln
Browse files Browse the repository at this point in the history
  • Loading branch information
SarthakMakhija committed Jan 19, 2024
1 parent 19778b7 commit f4e15d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/blast.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func (blast Blast) waitForResponsesToComplete() {
for {
select {
case <-blast.workerGroup.DoneChannel():
fmt.Fprintln(os.Stdout, "[Load completed]")
_, _ = fmt.Fprintln(os.Stdout, "[Load completed]")
case <-responsesCapturedInspectionTimer.C:
if blast.responseOptions.ReadingOption == ReadTotalResponses {
if blast.responseReader.TotalResponsesRead() >= uint64(
Expand Down

0 comments on commit f4e15d5

Please sign in to comment.