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
Currently, a new CCByteBuf is created for every send operation. CCByteBufs can't be easily reused since we use memoryvviews of them for sending, which may result in race conditions where the buffer (thus the view) gets overridden / cleared before the message actually gets sent.
Further investigation needed: maybe it's just because we didn't call memoryview.release()?
The text was updated successfully, but these errors were encountered:
Currently, a new
CCByteBuf
is created for every send operation.CCByteBuf
s can't be easily reused since we usememoryvview
s of them for sending, which may result in race conditions where the buffer (thus the view) gets overridden / cleared before the message actually gets sent.Further investigation needed: maybe it's just because we didn't call
memoryview.release()
?The text was updated successfully, but these errors were encountered: