Method
__init__
(self, host='localhost', port=DEFAULT_LOGGING_CONFIG_PORT,
handler=None, ready=None, verify=None)
Source from the content-addressed store, hash-verified
| 1021 | allow_reuse_port = False |
| 1022 | |
| 1023 | def __init__(self, host='localhost', port=DEFAULT_LOGGING_CONFIG_PORT, |
| 1024 | handler=None, ready=None, verify=None): |
| 1025 | ThreadingTCPServer.__init__(self, (host, port), handler) |
| 1026 | with logging._lock: |
| 1027 | self.abort = 0 |
| 1028 | self.timeout = 1 |
| 1029 | self.ready = ready |
| 1030 | self.verify = verify |
| 1031 | |
| 1032 | def serve_until_stopped(self): |
| 1033 | import select |
Callers
nothing calls this directly
Tested by
no test coverage detected