-
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
Tie command property to thread interrupt #647
Tie command property to thread interrupt #647
Conversation
… interruptions Conflicts: hystrix-core/src/test/java/com/netflix/hystrix/HystrixCommandTest.java
…rties to HystrixContextScheduler * There are now 2 varieties of HystrixContextScheduler, 1 that produces Actions which cause thread-interrupts on unsubscription and 1 that produces Actions which never interrupt threads. * The proper Scheduler gets chosen when the subscribeOn is wired into the command flow
NetflixOSS » Hystrix » Hystrix-pull-requests #28 FAILURE |
There's also an open issue about how to represent thread-interruption in ScheduledActions in RxJava. Relates to ReactiveX/RxJava#2579 |
I looked for a few minutes at the failing unit tests in hystrix-javanica and didn't see an obvious reason why they are failing now. I could use some help from those more familiar with hystrix-javanica. Any ideas, @dmgcodevil, @sawano / others? |
NetflixOSS » Hystrix » Hystrix-pull-requests #29 SUCCESS |
Merging this so I can make forward progress on top of this. Opened up a new issue (#663) to track the Javanica unit tests |
…ad-interrupt-2 Tie command property to thread interrupt
Addresses #354 and #598. I think this causes some Javanica unit tests to fail. Will address those next