ripcRead() failed: (11)

What does this error mean? Is there any way to find explanations of all the releated error code?

(ComponentName) RSSL_Adapter: (Severity) Error: RSSL Channel read failed on connection "RSSL_0x7f50fa3a65c0".  Channel will be closed.  (Internal debug info: "<Impl/ripcsrvr.c:5616> ripcRead() failed: (11)", errno: 11)

Best Answer

  • The "Channel read failed" error message means transport layer is unable to read data from buffer. It is possible that the API is reading data during the connection is down.

    The number is error code from errno.h and errno-base.h. In this case, number 11 means:

    EAGAIN      11  /* Try again */

    Overall, the error means there is disconnection as API cannot read from channel.

    There might be some condition on the network that cause the disconnection. You may need to check the server log as it may contains the information regarding the disconnection.