mirror of
https://github.com/solero/houdini.git
synced 2024-11-12 13:48:20 +00:00
Check transport is not closing before writing to it
This commit is contained in:
parent
dbf7e4d35e
commit
b25ac3c240
@ -79,6 +79,7 @@ class Spheniscidae:
|
||||
await self.send_line(xml_data.decode('utf-8'))
|
||||
|
||||
async def send_line(self, data):
|
||||
if not self.__writer.is_closing():
|
||||
self.logger.debug(f'Outgoing data: {data}')
|
||||
self.__writer.write(data.encode('utf-8') + Spheniscidae.Delimiter)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user