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
Madan Jampani
2014-10-21 22:02:16 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6f065271f3a15d32d068ce0ce1bd45e5db5cdd24
6f065271
1 parent
3559249b
Removed fixed TODO. Cleaned up logging
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
core/store/dist/src/main/java/org/onlab/onos/store/flow/impl/DistributedFlowRuleStore.java
pom.xml
core/store/dist/src/main/java/org/onlab/onos/store/flow/impl/DistributedFlowRuleStore.java
View file @
6f06527
...
...
@@ -95,8 +95,6 @@ public class DistributedFlowRuleStore
storeFlowEntryInternal
(
rule
);
// FIXME what to respond.
try
{
// FIXME: #respond() not working. responded message is
// handled by this sender node and never goes back.
message
.
respond
(
SERIALIZER
.
encode
(
"ACK"
));
}
catch
(
IOException
e
)
{
log
.
error
(
"Failed to respond back"
,
e
);
...
...
@@ -173,7 +171,8 @@ public class DistributedFlowRuleStore
return
storeFlowEntryInternal
(
rule
);
}
log
.
warn
(
"Not my flow forwarding to {}"
,
replicaInfo
.
master
().
orNull
());
log
.
info
(
"Forwarding storeFlowRule to {}, which is the primary (master) for device {}"
,
replicaInfo
.
master
().
orNull
(),
rule
.
deviceId
());
ClusterMessage
message
=
new
ClusterMessage
(
clusterService
.
getLocalNode
().
id
(),
...
...
pom.xml
View file @
6f06527
...
...
@@ -347,6 +347,11 @@
<pluginManagement>
<plugins>
<plugin>
<groupId>
kr.motd.maven
</groupId>
<artifactId>
os-maven-plugin
</artifactId>
<version>
1.2.3.Final
</version>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<!-- TODO: update once following issue is fixed. -->
...
...
Please
register
or
login
to post a comment