fix(proxy/fastly): set subgroup_members_max not subgroups_max
This commit is contained in:
parent
04d1623952
commit
5f643e5a1d
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ class ProxyFastlyAutomation(ProxyAutomation):
|
|||
Constructor method.
|
||||
"""
|
||||
# Requires Flask application context to read configuration
|
||||
self.subgroup_max = min(current_app.config.get("FASTLY_MAX_BACKENDS", 5), 20)
|
||||
self.subgroup_members_max = min(current_app.config.get("FASTLY_MAX_BACKENDS", 5), 20)
|
||||
super().__init__(*args, **kwargs)
|
||||
|
||||
def import_state(self, state: Optional[Any]) -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue