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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
In the Operation class, line 10, if you replace:
completeSuccess(r.get._1)
with
if (r.isDefined) completeSuccess(r.get._1)
then it won't crash when the redis response comes in more than one chunk (bytestring)
The text was updated successfully, but these errors were encountered:
Yes, thanks.
I think, only version 1.1 is affected. You can use 1.0 for the moment. I will release 1.2 later this week.
Sorry, something went wrong.
f5f20c6
No branches or pull requests
In the Operation class, line 10, if you replace:
completeSuccess(r.get._1)
with
if (r.isDefined) completeSuccess(r.get._1)
then it won't crash when the redis response comes in more than one chunk (bytestring)
The text was updated successfully, but these errors were encountered: