From 01119e1c53eeb2c1ac83d8a8358ffb251d145795 Mon Sep 17 00:00:00 2001 From: Arjun Nair Date: Mon, 15 May 2023 18:49:22 -0400 Subject: [PATCH] admission: fix comment in admission.go Epic: none Release note: None --- pkg/util/admission/admission.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/util/admission/admission.go b/pkg/util/admission/admission.go index 5a79d6d358c8..b9743c831620 100644 --- a/pkg/util/admission/admission.go +++ b/pkg/util/admission/admission.go @@ -17,8 +17,8 @@ // - Limiting node overload, so that bad things don't happen due to starvation // of resources. // - Providing performance isolation between low and high importance -// activities, so that overload caused by the latter does not impact the -// latency of the former. Additionally, for multi-tenant KV nodes, the +// activities, so that overload caused by the former does not impact the +// latency of the latter. Additionally, for multi-tenant KV nodes, the // isolation should extend to inter-tenant performance isolation. // Isolation is strictly harder than limiting node overload, and the // abstractions here are likely to be average quality in doing so.