Alexander Stecher
Alexander Stecher
Does this only happen on 1.1.5 or also on the newest version (1.4.1) ? What is the original `gmp` call that causes the crashing? The extensions seems to work on...
And locally you're using Ubuntu, but the server is running on Rocky Linux? I'd usually expect the static binary to be compatible with all Linux x86_64 distributions, but that might...
Is this happening only with xdebug enabled?
Hmm I'm not seeing any other special extensions. Are you `post`ing a `form-data` or `multi-part-encoded` body? Or just 15KB of raw data. Are you using any framework? Is it failing...
I think you can still use the task scheduler, you just need to have cron on the system where you are running the binary. Then instead of calling `php artisan...
I think the crash might be related to opcache, at least I don't see it happening after removing the extension. It's also possible that the crash doesn't happen since without...
Interestingly I also am not seeing any crash after running `php artisan config:cache`. So maybe it is indeed caused by multiple threads trying to read linux environment variables simultaneously via...
This didn't really seem to fix the issue. I'll try to create a minimal reproducer when I have time. It's not that critical for us since we usually stop the...
I created a minimal reproducer here: [https://github.com/AlliBalliBaba/watcher-debug](https://github.com/AlliBalliBaba/watcher-debug) With docker you can just clone the repo and do something like: ``` docker build -t debug-watcher . docker run debug-watcher ``` The...
Ah yeah that makes sense. I was seeing the error sometimes in tests, probably because the tests would finish before the watcher could start. I tested it again and with...