Esempio n. 1
0
 def __init__(self,
              key,
              secure=True,
              retry_delay=None,
              backoff=None,
              timeout=None):
     # override __init__ so that we can set secure of False for testing
     ConnectionKey.__init__(self,
                            key,
                            secure,
                            timeout=timeout,
                            retry_delay=retry_delay,
                            backoff=backoff)
Esempio n. 2
0
 def __init__(self, key, secure=True):
     # override __init__ so that we can set secure of False for testing
     ConnectionKey.__init__(self, key, secure)
 def __init__(self, key, secure=True):
     # override __init__ so that we can set secure of False for testing
     ConnectionKey.__init__(self, key, secure)
Esempio n. 4
0
 def __init__(self, key, secure=True, retry_delay=None,
              backoff=None, timeout=None):
     # override __init__ so that we can set secure of False for testing
     ConnectionKey.__init__(self, key, secure, timeout=timeout,
                            retry_delay=retry_delay, backoff=backoff)