Send a command and parse the response
(self, conn, command_name, *args, **options)
| 757 | self.connection_pool.disconnect() |
| 758 | |
| 759 | def _send_command_parse_response(self, conn, command_name, *args, **options): |
| 760 | """ |
| 761 | Send a command and parse the response |
| 762 | """ |
| 763 | conn.send_command(*args, **options) |
| 764 | return self.parse_response(conn, command_name, **options) |
| 765 | |
| 766 | def _close_connection( |
| 767 | self, |
no test coverage detected