We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02a579d + 27f1d4d commit 3a57abdCopy full SHA for 3a57abd
control/state.py
@@ -786,8 +786,9 @@ def update(self) -> bool:
786
787
# Handle namespace changes in which only the load balancing group id was changed
788
only_lb_group_changed = []
789
+ ns_prefix = GatewayState.build_namespace_key("nqn", None)
790
for key in changed.keys():
- if not key.startswith(GatewayState.NAMESPACE_PREFIX):
791
+ if not key.startswith(ns_prefix):
792
continue
793
try:
794
(should_process, new_lb_grp_id) = self.namespace_only_lb_group_id_changed(local_state_dict[key],
0 commit comments