txlb.ProxyService.getEnabledGroup does not always return an enabled group
Bug #255498 reported by
Shaival Varma
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
txLoadBalancer |
Fix Committed
|
Medium
|
Duncan McGreggor |
Bug Description
This report is for txLoadBalancer-
getEnabledGroup determines determines the enabled groups on line 94 with:
groups = [x for x in self.groups.
It expects x.isEnabled to evaluate to True only for enabled groups.
However, when txlb.applicatio
The fix appears to be to change:
groupConf.isEnabled
to:
groupConf.
Changed in txloadbalancer: | |
assignee: | nobody → oubiwann |
importance: | Undecided → Medium |
To post a comment you must log in.
Shaival,
Thanks for your fix! And sorry it took so long to get to this one. I was away in the Rocky Mountains when this ticket was submitted, and had forgotten it until just now.
The fix had been committed in trunk, r210.