X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fprotocol_plugins%2Fopenflow%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fprotocol_plugin%2Fopenflow%2Finternal%2FReadServiceFilter.java;h=1b71c3bec34f70b382af55c094e7acb7f86f0fdf;hb=0462ef3bfb5ee79460e73e103e347ad8ec4a2e34;hp=4301bfd6ef11b8668ec370faa92dadef55138956;hpb=29f7cfb54b580928c7feac63abce028a7014b0d5;p=controller.git diff --git a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/ReadServiceFilter.java b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/ReadServiceFilter.java index 4301bfd6ef..1b71c3bec3 100644 --- a/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/ReadServiceFilter.java +++ b/opendaylight/protocol_plugins/openflow/src/main/java/org/opendaylight/controller/protocol_plugin/openflow/internal/ReadServiceFilter.java @@ -128,7 +128,7 @@ public class ReadServiceFilter implements IPluginReadServiceFilter, OFMatch ofMatch = new FlowConverter(flow).getOFMatch(); List ofList = (cached == true) ? statsMgr .getOFFlowStatistics(sid, ofMatch) : statsMgr.queryStatistics( - sid, OFStatisticsType.FLOW, ofMatch, 6000); + sid, OFStatisticsType.FLOW, ofMatch); /* * Convert and filter the statistics per container @@ -149,7 +149,7 @@ public class ReadServiceFilter implements IPluginReadServiceFilter, long sid = (Long) node.getID(); List ofList = (cached == true) ? statsMgr .getOFFlowStatistics(sid) : statsMgr.queryStatistics(sid, - OFStatisticsType.FLOW, null, 6000); + OFStatisticsType.FLOW, null); /* * Convert and filter the statistics per container @@ -174,7 +174,7 @@ public class ReadServiceFilter implements IPluginReadServiceFilter, long sid = (Long) node.getID(); List ofList = (cached == true) ? statsMgr .getOFDescStatistics(sid) : statsMgr.queryStatistics(sid, - OFStatisticsType.DESC, null, 6000); + OFStatisticsType.DESC, null); return new DescStatisticsConverter(ofList).getHwDescription(); } @@ -382,7 +382,7 @@ public class ReadServiceFilter implements IPluginReadServiceFilter, short portId = (Short) connector.getID(); List ofList = (cached == true) ? statsMgr .getOFPortStatistics(sid, portId) : statsMgr.queryStatistics( - sid, OFStatisticsType.PORT, portId, 6000); + sid, OFStatisticsType.PORT, portId); List ncStatistics = new PortStatisticsConverter( sid, ofList).getNodeConnectorStatsList(); @@ -397,7 +397,7 @@ public class ReadServiceFilter implements IPluginReadServiceFilter, long sid = (Long) node.getID(); List ofList = (cached == true) ? statsMgr .getOFPortStatistics(sid) : statsMgr.queryStatistics(sid, - OFStatisticsType.FLOW, null, 6000); + OFStatisticsType.FLOW, null); List filteredList = filterPortListPerContainer( containerName, sid, ofList);