Skip to content

Commit 9d0f8c5

Browse files
StefanFranzWeiserpaulrutter
authored andcommitted
Syntax error fix for default filter (#381)
1 parent bd5a37f commit 9d0f8c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

http/proxy/src/main/java/org/apache/felix/http/proxy/impl/DispatcherTracker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
public final class DispatcherTracker
2929
extends ServiceTracker<HttpServlet, HttpServlet>
3030
{
31-
final static String DEFAULT_FILTER = "((http.felix.dispatcher=*)(" + Constants.OBJECTCLASS + "=" + HttpServlet.class.getName() + "))";
31+
final static String DEFAULT_FILTER = "(&(http.felix.dispatcher=*)(" + Constants.OBJECTCLASS + "=" + HttpServlet.class.getName() + "))";
3232

3333
private final ServletConfig config;
3434
private HttpServlet dispatcher;

0 commit comments

Comments
 (0)