Skip to content
Snippets Groups Projects
Commit a955edcb authored by KC Wang's avatar KC Wang
Browse files

Fix NPE due to missing dependency declaration of IDebugCounterService in Controller.java

parent 4e01c570
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,7 @@ public class FloodlightProvider implements IFloodlightModule {
dependencies.add(IPktInProcessingTimeService.class);
dependencies.add(IRestApiService.class);
dependencies.add(ICounterStoreService.class);
dependencies.add(IDebugCounterService.class);
dependencies.add(IFlowCacheService.class);
dependencies.add(IThreadPoolService.class);
return dependencies;
......
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