Skip to content

Commit

Permalink
reduce sleep time - log filter batch
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudhwarrier committed Nov 15, 2023
1 parent d470dcd commit abed6e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/load/automationv2_1/automationv2_1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ func TestLogTrigger(t *testing.T) {
Msg("Error getting logs")
}
logs = append(logs, logsInBatch...)
time.Sleep(time.Second * 1)
time.Sleep(time.Millisecond * 500)
}

if len(logs) > 0 {
Expand All @@ -537,7 +537,7 @@ func TestLogTrigger(t *testing.T) {
upkeepDelays = append(upkeepDelays, delay)
}
if (cIter+1)%batchSize == 0 {
time.Sleep(time.Second * 1)
time.Sleep(time.Millisecond * 500)
}
}

Expand Down

0 comments on commit abed6e8

Please sign in to comment.