oa-mega

Results 6 comments of oa-mega

Hi @supervacuus , I want to highlight that I can see a ".envelope" file created in the database path after the crash. however for some reason it does not get...

Thank you for the reply! After some investigations, we do have a process that outlives the crashed process and it is what's causing the issue. Does it mean there's noway...

It was indeed the case, and as a work around we managed to identify the file descriptor causing the issue and change its flags to add `FD_CLOEXEC` using `fcntl`. This...

Here's the technique I'm using for Ubuntu now. Instead of trying try close the file when the process crash (FD_CLOEXEC) , I try to acquire this lock myself in the...

There's a different issue in Ubuntu. The spawned process does not trigger on_crash hook. So the sequence is: 1. App starts 2. App crashes 3. On_crash hook triggered and starts...