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
ConnectFuture has a buffer size that is too small for username/password authentication. The username and password can each be up to 255 bytes and are written as part of the same message, but the buffer is only 262 bytes. I believe the buffer must be 513 bytes to account for the username + password + ver + ulen + plen
The text was updated successfully, but these errors were encountered:
ConnectFuture
has a buffer size that is too small for username/password authentication. The username and password can each be up to 255 bytes and are written as part of the same message, but the buffer is only 262 bytes. I believe the buffer must be 513 bytes to account for the username + password + ver + ulen + plenThe text was updated successfully, but these errors were encountered: