ipv6 bugfix
This commit is contained in:
parent
7c991e9d7f
commit
efdf6ac5ef
1 changed files with 2 additions and 2 deletions
|
@ -82,10 +82,10 @@ class ServerPool(object):
|
|||
|
||||
def server_run_status(self, port):
|
||||
if 'server' in self.config:
|
||||
if port not self.tcp_servers_pool:
|
||||
if port not in self.tcp_servers_pool:
|
||||
return False
|
||||
if 'server_ipv6' in self.config:
|
||||
if port not self.tcp_ipv6_servers_pool:
|
||||
if port not in self.tcp_ipv6_servers_pool:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue