small fix in protocol

This commit is contained in:
Timothy Pogue 2022-10-06 21:00:28 -06:00
parent b92b98af29
commit 1595e5fd8a

View File

@ -181,6 +181,7 @@ class ClientProtocol:
async def _handle_default(self, name, type, data):
key, la, df = data['key'], data['la'], data['df']
if not df.empty:
columns = ", ".join([str(column) for column in df.columns])
self.logger.info(key)
@ -275,6 +276,7 @@ async def create_client(
logger.error("Unexpected error has occurred:")
logger.exception(e)
await asyncio.sleep(sleep_time)
continue