protected void reconnect() {
   try {
     client.reconnect();
     this.started = true;
   } catch (Exception e) {
     LOG.error(
         String.format(
             "Server unreachable, reattempting to connect in %d !", RECONNECTION_RATE / 1000));
   }
 }