9
0
Fork 0

Make it go fast
continuous-integration/drone Build is passing Details

This commit is contained in:
Lauri Võsandi 2022-11-07 22:31:09 +02:00
parent e34b04c8ca
commit dce38567a3
1 changed files with 1 additions and 0 deletions

View File

@ -277,6 +277,7 @@ class FileTailer(object):
break
buf = self.buf[:step + 1]
self.buf = self.buf[step + 1:]
await asyncio.sleep(0)
yield self.offset, len(buf), buf[:-1].decode("utf-8")
self.offset += step + 1
break