On Tue, Aug 4, 2020 at 1:21 PM Ravi Kant Soni <nova3r...@gmail.com> wrote:
>
> runtime: epollwait on fd 4 failed with 38
> Fatal error: runtime : netpoll failed
>
> runtime stack:
> Runtime.throw(0xa59c24, 0x17)
>    /apps/jenkins/build/tools/go1.12.6.linux-amd64/src/runtime/panic.go:617
> .....
>
>
> This generates when I run generated binary from jenkins pipeline, in linux 
> box using "nohup ./binary"
>
> But, when I generate binary in same linux box, and run, it run fine without 
> any error.

Thanks.  Errno 38 is ENOSYS.  This seems to mean that the kernel where
the program is running does not support the system call epoll_pwait.
The epoll_pwait system call was added in Linux kernel version 2.6.19.
What kernel version are you running the program on?

Ian

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CAOyqgcW96kAaYje7nqkX9k52agHuFEs08L-qeY-TtnrXT%3DKu8g%40mail.gmail.com.

Reply via email to