(self)
| 982 | self._closing = False |
| 983 | |
| 984 | def _warn_on_long_close(self): |
| 985 | logger.warning('Pool.close() is taking over 60 seconds to complete. ' |
| 986 | 'Check if you have any unreleased connections left. ' |
| 987 | 'Use asyncio.wait_for() to set a timeout for ' |
| 988 | 'Pool.close().') |
| 989 | |
| 990 | def terminate(self): |
| 991 | """Terminate all connections in the pool.""" |
nothing calls this directly
no outgoing calls
no test coverage detected