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
On Centos 5 systems a minor difference in the /proc/net/dev file is causing it to not be parsed fully.
Thanks to the research of @Fiery-Fenix I traced it back to #317. To add support for interface aliases, we began parsing until ": ", but on Centos 5 there is no space. I think a suitable fix would be to parse until the last index of ":".
On Centos 5 systems a minor difference in the
/proc/net/dev
file is causing it to not be parsed fully.Thanks to the research of @Fiery-Fenix I traced it back to #317. To add support for interface aliases, we began parsing until
": "
, but on Centos 5 there is no space. I think a suitable fix would be to parse until the last index of ":".The text was updated successfully, but these errors were encountered: