[resource_quota] Fix setpoint for memory pressure controller (#32625)

<!--

If you know who should review your pull request, please assign it to
that
person, otherwise the pull request would get assigned randomly.

If your pull request is for a specific language, please add the
appropriate
lang label.

-->
pull/32629/head
Craig Tiller 2 years ago committed by GitHub
parent a67a46e7a3
commit d025d50b54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/lib/resource_quota/memory_quota.cc

@ -645,7 +645,7 @@ std::string PressureController::DebugString() const {
}
double PressureTracker::AddSampleAndGetControlValue(double sample) {
static const double kSetPoint = 95.0;
static const double kSetPoint = 0.95;
double max_so_far = max_this_round_.load(std::memory_order_relaxed);
if (sample > max_so_far) {

Loading…
Cancel
Save