NASA-AMMOS / AIT-DSN

MIT License
19 stars 10 forks source link

SLE Class attempts to send heartbeat before connecting to the DSN #124

Closed kmarwah closed 3 years ago

kmarwah commented 3 years ago

The following lines are in SLE.__init__():

        self._conn_monitor = gevent.spawn(conn_handler, self)
        self._data_processor = gevent.spawn(data_processor, self)

The connection monitor process immediately attempts to send a heartbeat to the DSN, even if the DSN socket hasn't been created.