Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ public ElementMatcher<? super NamedElement> getTypeMatcherPreFilter() {
@Override
public ElementMatcher<? super TypeDescription> getTypeMatcher() {
return hasSuperType(named("java.util.concurrent.Executor"))
// executes on same thread, no need to wrap to activate again
.and(not(named("org.apache.felix.resolver.ResolverImpl$DumbExecutor")))
// hazelcast tries to serialize the Runnables/Callables to execute them on remote JVMs
.and(not(nameStartsWith("com.hazelcast")));
}
Expand Down