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
* Add check for max message size
1. When creating a connection, try to get maxMessageSize from handshake
response command. If it's not set, then use the default maxMessageSize
value defined in the client side.
2. When sending a message, check whether the size of payload exceeds
maxMessageSize. If so, return error immediately without adding this
meesage into sending queue.
3. To implement these, I made some tiny modifications in Connection
interface and added a field in its implementation struct.
* Add testing for max message size
* Fix error log
hangc0276
pushed a commit
to hangc0276/pulsar
that referenced
this issue
May 26, 2021
Expected behavior
We shouldn't fetch protobuf and gtest from the network and recompile it every time we do a build.
Binary should be cached and the build script should check for their presence in cache.
To cache the files, take a look at the
.travis.yml
file:Just need to put them in these directories and they will be still around on the next build.
The text was updated successfully, but these errors were encountered: