|
@@ -124,7 +124,7 @@ public class SelectorKernel extends AbstractKernel
|
|
// Hand it to all of the endpoints that match our routing
|
|
// Hand it to all of the endpoints that match our routing
|
|
for( NioEndpoint p : endpoints.values() ) {
|
|
for( NioEndpoint p : endpoints.values() ) {
|
|
// Does it match the filter?
|
|
// Does it match the filter?
|
|
- if( !filter.apply(p) )
|
|
|
|
|
|
+ if( filter != null && !filter.apply(p) )
|
|
continue;
|
|
continue;
|
|
|
|
|
|
// Give it the data
|
|
// Give it the data
|