Lowered reconnect time on certstream timeout

This commit is contained in:
Dionysus 2024-03-12 00:44:17 -04:00
parent 67c7e639a9
commit 6bb0d4eeef
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ async def process_data(place_holder: str = None):
except websockets.ConnectionClosed:
logging.error('Connection to Certstream was closed. Attempting to reconnect...')
await asyncio.sleep(15)
await asyncio.sleep(3)
except Exception as e:
logging.error(f'An error occurred while processing Certstream records! ({e})')