Skip to content
Snippets Groups Projects
Commit dd2a33be authored by Ryan Izard's avatar Ryan Izard
Browse files

Return the correct starting location of the pipeline

parent e1681a77
No related branches found
No related tags found
No related merge requests found
......@@ -150,11 +150,12 @@ public class RestApiServer implements IFloodlightModule, IRestApiService {
};
crossAccessAllowAll.setNext(slashFilter);
slashFilter.setNext(baseRouter);
return crossAccessAllowAll; /* caaa --> sf --> br */
}
slashFilter.setNext(baseRouter);
return slashFilter;
return slashFilter; /* sf --> br */
}
public void run(FloodlightModuleContext fmlContext, String restHost) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment