Skip to content

Commit

Permalink
Added import statement to pull in CreateProcessorHandler.
Browse files Browse the repository at this point in the history
  • Loading branch information
boneill42 committed Mar 6, 2013
1 parent 4399130 commit 61f12fb
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -38,6 +38,7 @@
import org.usergrid.vx.server.operations.CreateColumnFamilyHandler;
import org.usergrid.vx.server.operations.CreateFilterHandler;
import org.usergrid.vx.server.operations.CreateKeyspaceHandler;
import org.usergrid.vx.server.operations.CreateProcessorHandler;
import org.usergrid.vx.server.operations.FilterModeHandler;
import org.usergrid.vx.server.operations.GetHandler;
import org.usergrid.vx.server.operations.HandlerUtils;
Expand Down Expand Up @@ -146,7 +147,7 @@ public static void registerOperationHandlers(Vertx x) {
x.eventBus().registerHandler("request.counter", new CounterHandler());
x.eventBus().registerHandler("request.consistency", new ConsistencyHandler());
x.eventBus().registerHandler("request.createfilter", new CreateFilterHandler(x.eventBus()));
//x.eventBus().registerHandler("request.createprocessor", new CreateProcessorHandler(x.eventBus()));
x.eventBus().registerHandler("request.createprocessor", new CreateProcessorHandler(x.eventBus()));
x.eventBus().registerHandler("request.filtermode", new FilterModeHandler());
}

Expand Down

0 comments on commit 61f12fb

Please sign in to comment.