(self)
| 58 | self.daemon = True |
| 59 | |
| 60 | async def run(self): |
| 61 | for _ in range(self.num): |
| 62 | file = self.gfs.open_upload_stream("test") |
| 63 | await file.write(b"hello") |
| 64 | await file.close() |
| 65 | |
| 66 | |
| 67 | class JustRead(ConcurrentRunner): |
nothing calls this directly
no test coverage detected