Send a command and parse the response
(self, conn, command_name, *args, **options)
| 774 | await self.aclose(close_connection_pool) |
| 775 | |
| 776 | async def _send_command_parse_response(self, conn, command_name, *args, **options): |
| 777 | """ |
| 778 | Send a command and parse the response |
| 779 | """ |
| 780 | await conn.send_command(*args) |
| 781 | return await self.parse_response(conn, command_name, **options) |
| 782 | |
| 783 | async def _close_connection( |
| 784 | self, |
no test coverage detected