#define EBADF 9 /* Bad file descriptor */ #define ECHILD 10 /* No child processes */ #define EDEADLK 11 /* Resource deadlock avoided */ /* 11 was EAGAIN */ #define ENOMEM 12 /* Cannot allocate memory */ #defineEACCES13 /* Permission denied */ #define EFAULT 14 /* Bad address ...
You can get the logs using php artisan serve and it doesn't give the error, my case was fwrite(): Write of 3619 bytes failed with errno=9 Bad file descriptor TheLevti commented Mar 6, 2024 We stream it via stout and stderr which then goes out to Datadog. Same issue and same use...
The file descriptor fd refers to a file other than a socket and has been marked nonblocking (O_NONBLOCK), and the write would block. See open(2) for further details on the O_NONBLOCK flag. Do you have any tips/ideas? In my case the problem was in the type of the $heartbeat parame...