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
requestStream should continue serving messages infinitely.
Actual Behavior
After Integer.MAX_VALUE messages, no more requestN frames are sent by the client, and the server stops sending messages.
The main problem is in io.rsocket.core.StateUtils. The sum of all requestN is limited by Integer.MAX_VALUE. The best solution will be to remove the limitation on the sum of requestN completely.
The text was updated successfully, but these errors were encountered:
Expected Behavior
requestStream
should continue serving messages infinitely.Actual Behavior
After
Integer.MAX_VALUE
messages, no morerequestN
frames are sent by the client, and the server stops sending messages.The main problem is in
io.rsocket.core.StateUtils
. The sum of allrequestN
is limited byInteger.MAX_VALUE
. The best solution will be to remove the limitation on the sum ofrequestN
completely.The text was updated successfully, but these errors were encountered: