cage-challenge-4
cage-challenge-4 copied to clipboard
Minor Bugs in GreenAccessService
These are just minor things found in GreenAccessService.py that relate to corner cases.
On line 112,
if len(reachable_hosts) < 0
this can never happen as len is always greater than or equal to zero. Did you mean to say < 1?
On line 128,
session.active
is undefined and I think this should be,
self.session.active