gtcodes / time_logger_joker

A simple python tool that can be used to log how much time that is spent somewhere
BSD 3-Clause "New" or "Revised" License
2 stars 0 forks source link

Fix issue of logger crashing after some time #21

Closed Gertdor closed 6 years ago

Gertdor commented 6 years ago

fix cannot fetch data issue

Mupperry commented 6 years ago

This seems to be caused by the connection to the database timing-out, which is enabled by default in (most) MySQL implementations, where it is set to 8 hours. A resonable fix would be to try to reconnect if the query fails. See this.

Criticalstone commented 6 years ago

Wow! Great job finding this out!