zhxsxuan opened a new issue #87:
URL: https://github.com/apache/rocketmq-client-python/issues/87
I tried to send sync a byte string read from an image to RMQ by the
following code:
```
with open("model/test.jpeg", "rb") as f:
img_str = f.read()
msg.set_body(img_str)
ret = producer.send_sync(msg)
```
but the message body a consumer received is only a part of the byte string
```
b'\xff\xd8\xff\xdb'
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]