You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In version 1.12 of Go a Sysconn was introduced to os.File for ioctl calls, that is used for setting up device. Currently p2p doesn't support polling and during the process of instance creation we're getting error: /dev/net/tun: not pollable
which happens during first attempt to read data from TAP interface. Afterwards, instance destroys itself, but start command exits with exit code 0, because interface creation went without any problems.
We need to modify current code of tap interfaces on Linux to support latest versions of Go.
The text was updated successfully, but these errors were encountered:
In version 1.12 of Go a
Sysconn
was introduced toos.File
for ioctl calls, that is used for setting up device. Currently p2p doesn't support polling and during the process of instance creation we're getting error:/dev/net/tun: not pollable
which happens during first attempt to read data from TAP interface. Afterwards, instance destroys itself, but
start
command exits with exit code 0, because interface creation went without any problems.We need to modify current code of tap interfaces on Linux to support latest versions of Go.
The text was updated successfully, but these errors were encountered: