-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
(Javanica) HystrixCollapser failed while executing #1354
Comments
@dmgcodevil Could you take a look at this one? I'm familiar with debugging vanilla Hystrix collapsing, but not with the Javanica variants |
Collapser method should return Future . You can get more examples from here https://github.com/Netflix/Hystrix/blob/master/hystrix-contrib/hystrix-javanica/src/test/java/com/netflix/hystrix/contrib/javanica/test/common/collapser/BasicCollapserTest.java |
I have already managed to make it works returning
But still it is not working with
@dmgcodevil Why do you say that it should return |
@dmgcodevil Is the PR #1320 related with my problem returning If this is the case, when do you have plans to release a new version including these changes? |
hi, collapser feature for observable was added relatively recently, so it might be not released yet. @mattrjacobs when are you going to make next release with this changes ? |
I've got a couple of other small changes I'd like to get in before the next release. Let me see if I can get to them tomorrow. If not, I'll cut a release with the current tip of master to unblock this. |
Sorry for the delay. I just released v1.5.6 from master, so it should have everything that's been submitted and approved. Please report back if this version fixes your issue |
@mattrjacobs v1.5.6 fix the issue. Thank you very much! 😃 |
|
Running the following code:
HystrixCollapser throws the following error:
If I change the implementation to return an Observable like in your documentation example:
HystrixCollapser throws the following exception:
Could you tell me what is wrong in my implementation? Thanks in advance!
The text was updated successfully, but these errors were encountered: