Skip to content

Commit

Permalink
Adding the comment to ignore like in tests as its started to scan the…
Browse files Browse the repository at this point in the history
…se errors
  • Loading branch information
dianadevasia committed Mar 12, 2024
1 parent 9de4395 commit e20f3da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion toxics/latency.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (t *LatencyToxic) delay() time.Duration {
delay := t.Latency
jitter := t.Jitter
if jitter > 0 {
//#nosec
// #nosec G404 -- was ignored before too
delay += rand.Int63n(jitter*2) - jitter
}
return time.Duration(delay) * time.Millisecond
Expand Down
4 changes: 2 additions & 2 deletions toxics/slicer.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ func (t *SlicerToxic) chunk(start int, end int) []int {
}

mid := start + (end-start)/2
//#nosec

if t.SizeVariation > 0 {
mid += rand.Intn(t.SizeVariation*2) - t.SizeVariation
mid += rand.Intn(t.SizeVariation*2) - t.SizeVariation // #nosec G404 -- was ignored before too
}
left := t.chunk(start, mid)
right := t.chunk(mid, end)
Expand Down
4 changes: 2 additions & 2 deletions toxics/toxic.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ func NewToxicStub(input <-chan *stream.StreamChunk, output chan<- *stream.Stream
func (s *ToxicStub) Run(toxic *ToxicWrapper) {
s.running = make(chan struct{})
defer close(s.running)
//#nosec
if rand.Float32() < toxic.Toxicity {
randomToxicity := rand.Float32() // #nosec G404 -- was ignored before too
if randomToxicity < toxic.Toxicity {
toxic.Pipe(s)
} else {
new(NoopToxic).Pipe(s)
Expand Down

0 comments on commit e20f3da

Please sign in to comment.