SocketInfo's 'host' parameter is no longer optional.

This commit is contained in:
A. Jesse Jiryu Davis 2014-07-17 15:26:58 -04:00
parent 118b47e6e3
commit 55f18f0937

View File

@ -116,7 +116,7 @@ class PoolOptions(object):
class SocketInfo(object):
"""Store a socket with some metadata
"""
def __init__(self, sock, pool, host=None):
def __init__(self, sock, pool, host):
self.sock = sock
self.host = host
self.authset = set()