We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
i tried to parse the following object (which symbolises a git ref)
'{"ref":"6653406e8512483ea41127ccecac9197afe273fe"}' and it apparently tried to parse the ref as a number and not as string
'{"ref":"6653406e8512483ea41127ccecac9197afe273fe"}'
[json.exception.out_of_range.406] number overflow parsing '6653406e8512483'
I guess it's a very rare case because it worked multiple times before and with this specific string it failed
Parse '{"ref":"6653406e8512483ea41127ccecac9197afe273fe"}'
Expected result is the object with the ref attribute which is a string
No response
Linux
1800
develop
The text was updated successfully, but these errors were encountered:
My code was accidentally trying to parse the ref value although it was just a string.
Sorry, something went wrong.
No branches or pull requests
Description
i tried to parse the following object (which symbolises a git ref)
'{"ref":"6653406e8512483ea41127ccecac9197afe273fe"}'
and it apparently tried to parse the ref as a number and not as string
[json.exception.out_of_range.406] number overflow parsing '6653406e8512483'
I guess it's a very rare case because it worked multiple times before and with this specific string it failed
Reproduction steps
Parse '{"ref":"6653406e8512483ea41127ccecac9197afe273fe"}'
Expected vs. actual results
Expected result is the object with the ref attribute which is a string
Minimal code example
No response
Error messages
[json.exception.out_of_range.406] number overflow parsing '6653406e8512483'
Compiler and operating system
Linux
Library version
1800
Validation
develop
branch is used.The text was updated successfully, but these errors were encountered: