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
When event, err := execExitStore.GetExitedEvent(e.traceEventID) encounters an error, the status is set to 256. The setExited method then calls unix.WaitStatus(status).ExitStatus(), as shown here:
When using
crictl
to execute theexec
command, there is an intermittent error reported:The relevant Go code snippet is as follows:
When
event, err := execExitStore.GetExitedEvent(e.traceEventID)
encounters an error, the status is set to 256. ThesetExited
method then callsunix.WaitStatus(status).ExitStatus()
, as shown here:According to the source code, this will return -1:
As a result, the error message is generated:
execing command in container: error stream protocol error: invalid exit code value 4294967295
The text was updated successfully, but these errors were encountered: