-
Notifications
You must be signed in to change notification settings - Fork 687
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
@W-17808637 Improving code coverage for core/internal module #14244
base: master
Are you sure you want to change the base?
Conversation
@@ -81,29 +81,6 @@ public void setSchedulerDecorator(Function<ScheduledExecutorService, ScheduledEx | |||
this.schedulerDecorator = schedulerDecorator; | |||
} | |||
|
|||
/** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apparently nothing was using these methods... so yoink...
@@ -70,7 +71,7 @@ public abstract class AbstractReactorStreamProcessingStrategy extends AbstractSt | |||
int parallelism, | |||
int maxConcurrency, | |||
boolean maxConcurrencyEagerCheck) { | |||
super(subscribers, maxConcurrency, maxConcurrencyEagerCheck); | |||
super(subscribers, maxConcurrency, maxConcurrencyEagerCheck, () -> currentThread()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made this testable so I could check that interrupt was being passed on when interrupted...
...core/internal/processor/strategy/TransactionAwareStreamEmitterProcessingStrategyFactory.java
Outdated
Show resolved
Hide resolved
SonarQube Quality Gate |
Adding coverage for the runtime/core/internal/processor/strategy package.