Method
__init__
(self, npipe_path, timeout=60, maxsize=10)
Source from the content-addressed store, hash-verified
| 28 | |
| 29 | class NpipeHTTPConnectionPool(urllib3.connectionpool.HTTPConnectionPool): |
| 30 | def __init__(self, npipe_path, timeout=60, maxsize=10): |
| 31 | super().__init__( |
| 32 | 'localhost', timeout=timeout, maxsize=maxsize |
| 33 | ) |
| 34 | self.npipe_path = npipe_path |
| 35 | self.timeout = timeout |
| 36 | |
| 37 | def _new_conn(self): |
| 38 | return NpipeHTTPConnection( |
Callers
nothing calls this directly
Tested by
no test coverage detected