-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Fix double encoding of messages when commit() fails. #2773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix double encoding of messages when commit() fails. #2773
Conversation
| :returns: list of opaque IDs for published messages. | ||
| """ | ||
| _transform_messages_base64(messages, _base64_unicode) | ||
| messages_to_send = copy.deepcopy(messages) |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
…ommits-if-failed-2771 Fix double encoding of messages when commit() fails.
Fixes #2771
This copies the
messagesvariable instead of transforming it in place so that if acommit()fails, the messages aren't double encoded.