Skip to content
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 enconding long int #214

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

fix enconding long int #214

wants to merge 1 commit into from

Conversation

DanielePalaia
Copy link
Collaborator

This closes #212

Copy link
Member

@Gsantomaggio Gsantomaggio left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's not merge for the moment

@@ -791,7 +791,7 @@ def encode_unknown(output: bytearray, value: Optional[object], **kwargs: Any) ->
elif isinstance(value, float):
encode_double(output, value, **kwargs)
elif isinstance(value, int):
encode_int(output, value, **kwargs)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to investigate more on this.
We want to encode and int with a long

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

AMQP encoder does not handle large integers
2 participants