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 ffeb90f commit afb87c6
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 @@ -196,7 +196,7 @@ func (blast Blast) waitForLoadToComplete() {
for {
select {
case <-blast.workerGroup.DoneChannel():
fmt.Fprintln(os.Stdout, "[Load completed]")
_, _ = fmt.Fprintln(os.Stdout, "[Load completed]")
case <-loadReportedInspectionTimer.C:
if blast.reporter.TotalLoadReportedTillNow() >= uint64(
blast.groupOptions.TotalRequests(),
Expand Down

0 comments on commit afb87c6

Please sign in to comment.