From 88abf33cd4c44f23fde708eff34b16c0198ef9bc Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Wed, 4 Sep 2024 08:50:03 -0400 Subject: [PATCH] nit: Fix variable name used in a comment Change-Id: Ia47d06317428e5c7df8755521d285af85ef4b709 --- neutron/scheduler/l3_ovn_scheduler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/scheduler/l3_ovn_scheduler.py b/neutron/scheduler/l3_ovn_scheduler.py index 6fa70ffdeba..36bfd75f4ec 100644 --- a/neutron/scheduler/l3_ovn_scheduler.py +++ b/neutron/scheduler/l3_ovn_scheduler.py @@ -63,7 +63,7 @@ class OVNGatewayScheduler(object, metaclass=abc.ABCMeta): existing_chassis = existing_chassis or [] candidates = candidates or [] candidates = list(set(candidates) - set(existing_chassis)) - # If no candidates, or gateway scheduled on MAX_GATEWAY_CHASSIS nodes + # If no candidates, or gateway scheduled on MAX_GW_CHASSIS nodes # or all candidates in existing_chassis, return existing_chassis. # Otherwise, if more candidates present, then schedule them. if existing_chassis: