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'm getting errors on new repositories because new labels are not getting ids that are greater than Int.MaxValue. For example: https://api.github.com/repos/precog/quasar-datasource-kafka/labels/:robot:
Int.MaxValue
{ "id": 2167724672, "node_id": "MDU6TGFiZWwyMTY3NzI0Njcy", "url": "https://api.github.com/repos/precog/quasar-datasource-kafka/labels/:robot:", "name": ":robot:", "color": "ffffff", "default": false, "description": "" }
It fails to decode with this as the cause:
DecodingFailure(Int, List(DownField(id), DownArray))
A quick check revealed that 2167724672 is not an Int:
2167724672
Int
scala> 2167724672 <console>:1: error: integer number too large
The text was updated successfully, but these errors were encountered:
I believe this has been already fixed in #523, hopefully there will be a release soon
Sorry, something went wrong.
@juanpedromoreno Indeed. That should teach me to look at the actual code instead of the code for the version I'm using.
No branches or pull requests
I'm getting errors on new repositories because new labels are not getting ids that are greater than
Int.MaxValue
. For example: https://api.github.com/repos/precog/quasar-datasource-kafka/labels/:robot:It fails to decode with this as the cause:
A quick check revealed that
2167724672
is not anInt
:The text was updated successfully, but these errors were encountered: