[PR #9775/8e36fd48 backport][stable-10] apache2_mod_proxy: follow-up for #9762, forgot one place with find_all/findAll (#9776)
apache2_mod_proxy: follow-up for #9762, forgot one place with find_all/findAll (#9775)
Follow-up for #9762, forgot one place.
(cherry picked from commit 8e36fd4847
)
Co-authored-by: Felix Fontein <felix@fontein.de>
pull/9780/head
parent
d3650f27b0
commit
78c8fa0d49
|
@ -277,7 +277,7 @@ class BalancerMember(object):
|
||||||
except TypeError as exc:
|
except TypeError as exc:
|
||||||
self.module.fail_json(msg="Cannot parse balancer_member_page HTML! {0}".format(exc))
|
self.module.fail_json(msg="Cannot parse balancer_member_page HTML! {0}".format(exc))
|
||||||
else:
|
else:
|
||||||
subsoup = find_all(soup, 'table')[1].find_all('tr')
|
subsoup = find_all(find_all(soup, 'table')[1], 'tr')
|
||||||
keys = find_all(subsoup[0], 'th')
|
keys = find_all(subsoup[0], 'th')
|
||||||
for valuesset in subsoup[1::1]:
|
for valuesset in subsoup[1::1]:
|
||||||
if re.search(pattern=self.host, string=str(valuesset)):
|
if re.search(pattern=self.host, string=str(valuesset)):
|
||||||
|
|
Loading…
Reference in New Issue