Toggle navigation
Toggle navigation
This project
Loading...
Sign in
홍길동
/
onos
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
alshabib
2014-10-23 10:45:55 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9cbdec4015592212ae9b34bec7ee46a7d23912a6
9cbdec40
1 parent
44edb814
stats manager cleanup
Change-Id: Icf5ab2ef39d3ad887c56b2d49ebb418e9de4ff2d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
core/net/src/main/java/org/onlab/onos/net/statistic/impl/StatisticManager.java
core/net/src/main/java/org/onlab/onos/net/statistic/impl/StatisticManager.java
View file @
9cbdec4
...
...
@@ -157,16 +157,12 @@ public class StatisticManager implements StatisticService {
case
RULE_UPDATED:
if
(
rule
instanceof
FlowEntry
)
{
statisticStore
.
addOrUpdateStatistic
((
FlowEntry
)
rule
);
}
else
{
log
.
warn
(
"IT AIN'T A FLOWENTRY"
);
}
break
;
case
RULE_ADD_REQUESTED:
log
.
info
(
"Preparing for stats"
);
statisticStore
.
prepareForStatistics
(
rule
);
break
;
case
RULE_REMOVE_REQUESTED:
log
.
info
(
"Removing stats"
);
statisticStore
.
removeFromStatistics
(
rule
);
break
;
case
RULE_REMOVED:
...
...
Please
register
or
login
to post a comment