Weird errors during shutdown of VM #3776
-
I'm seeing these weird errors when shutting down a VZ VM:
and
They don't seem to be causing issues. Why are they reported to the user? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
The dhcp log message is from gvisor-tap-vsock, it is reported in the log - and the log is shown to the user. https://github.com/containers/gvisor-tap-vsock/blob/v0.8.6/pkg/services/dhcp/dhcp.go#L64 I'm not sure what a DHCP server is supposed to be doing with a RELEASE message, but it ain't doing it... If it is important to avoid this log message, open an issue about it? (As in #1381 (comment))
Ideally libraries should not log, or at least be configurable... But this one is using the default |
Beta Was this translation helpful? Give feedback.
-
There could be more options about what kind of log output you want to see, like minikube --alsologtostderr Most of it belongs in a log file, and not on the console $ limactl start
Starting "default"
READY. |
Beta Was this translation helpful? Give feedback.
The dhcp log message is from gvisor-tap-vsock, it is reported in the log - and the log is shown to the user.
https://github.com/containers/gvisor-tap-vsock/blob/v0.8.6/pkg/services/dhcp/dhcp.go#L64
I'm not sure what a DHCP server is supposed to be doing with a RELEASE message, but it ain't doing it...
If it is important to avoid this log message, open an issue about it? (As in #1381 (comment))
#1160
containers/gvisor-tap-vsock#408
Ideally libraries should not log, or at least be configurable...
But this one is using the default
logrus
, so it gets mixed in.