I found that indi web server on Astroberry logs into `/tmp/indiserver.log`. (Why on earth put logs under /tmp???)

There's this line on the log when the crash happens on the client.
`Child process 2670 died`

After further investigation, that process belongs to indi_canon_ccd. When I followed the memory usage, it looks like it's reserving more and more memory until the process crashes.

```bash
astroberry@astroberry:~ $ while true; do ps -p 2670 -o rss=; sleep 2; done;
19604
19604
19604
19864
19864
28032
...
644088
676428
676704
678112
<no more values because the process is dead>
```

Read More...