Skip to content

Commit

Permalink
Merge pull request dapr#8082 from cicoyle/fix-perf-flakiness
Browse files Browse the repository at this point in the history
Perf Test Fine Tuning
  • Loading branch information
JoshVanL authored Sep 23, 2024
2 parents b26a195 + 42ab980 commit 8b7020a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/perf/actor_reminder/actor_reminder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const (

// Target for the QPS - Temporary
targetQPS float64 = 33
targetSchedulerQPS float64 = 3000
targetSchedulerQPS float64 = 2900

// Target for the QPS to trigger reminders.
targetTriggerQPS float64 = 1000
Expand Down Expand Up @@ -296,7 +296,7 @@ func TestActorReminderSchedulerRegistrationPerformance(t *testing.T) {
assert.Equal(t, 0, daprResult.RetCodes.Num400)
assert.Equal(t, 0, daprResult.RetCodes.Num500)
assert.Equal(t, 0, restarts)
assert.InDelta(t, targetSchedulerQPS, daprResult.ActualQPS, 5)
assert.InDelta(t, targetSchedulerQPS, daprResult.ActualQPS, 10)
}

type actorReminderRequest struct {
Expand Down

0 comments on commit 8b7020a

Please sign in to comment.