Skip to content

Commit

Permalink
OM96
Browse files Browse the repository at this point in the history
fixed lint errors
  • Loading branch information
mphanias committed Nov 23, 2023
1 parent c663723 commit 25cb275
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion watcher_latency.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ func (lw *LatencyWatcher) refresh(o *Observer, infoKeys []string, rawMetrics map

// loop all the latency infokeys
for ik := range infoKeys {
parseSingleLatenciesKey(infoKeys[ik], rawMetrics, allowedLatenciesList, blockedLatenciessList, ch)
err := parseSingleLatenciesKey(infoKeys[ik], rawMetrics, allowedLatenciesList, blockedLatenciessList, ch)
if err != nil {
return err
}
}

return nil
Expand Down

0 comments on commit 25cb275

Please sign in to comment.