Run the 'clear' operation.
(self, op)
| 144 | self.pool.ready() |
| 145 | |
| 146 | def clear(self, op): |
| 147 | """Run the 'clear' operation.""" |
| 148 | if "interruptInUseConnections" in op: |
| 149 | self.pool.reset(interrupt_connections=op["interruptInUseConnections"]) |
| 150 | else: |
| 151 | self.pool.reset() |
| 152 | |
| 153 | def close(self, op): |
| 154 | """Run the 'close' operation.""" |
no test coverage detected