in pyignite/connection/connection.py [0:0]
def reconnect(self):
if self.alive:
return
self.close(on_reconnect=True)
# connect and silence the connection errors
try:
self.connect()
except connection_errors:
pass