(self)
| 58 | return output |
| 59 | |
| 60 | def get_all_output(self): |
| 61 | outputs = [] |
| 62 | while True: |
| 63 | try: |
| 64 | outputs.append(self.get_output()) |
| 65 | except asyncio.TimeoutError: |
| 66 | break |
| 67 | return outputs |
| 68 | |
| 69 | def get_all_response_headers(self): |
| 70 | outputs = self.get_all_output() |
no test coverage detected