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
Jonathan Hart
2016-05-20 13:42:26 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
888eeda7592805d9eb91935a160fe385bef94832
888eeda7
1 parent
ad432065
Fix SoftRouter kryo registrations.
Change-Id: I32cae7b7bc917718719f51d684c57d3a586d2d73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
drivers/default/src/main/java/org/onosproject/driver/pipeline/SoftRouterPipeline.java
drivers/default/src/main/java/org/onosproject/driver/pipeline/SoftRouterPipeline.java
View file @
888eeda
...
...
@@ -86,10 +86,9 @@ public class SoftRouterPipeline extends AbstractHandlerBehaviour implements Pipe
private
ApplicationId
driverId
;
private
KryoNamespace
appKryo
=
new
KryoNamespace
.
Builder
()
.
register
(
DummyGroup
.
class
)
.
register
(
KryoNamespaces
.
API
)
.
register
(
byte
[].
class
)
.
build
();
.
register
(
KryoNamespaces
.
API
)
.
register
(
DummyGroup
.
class
)
.
build
();
private
final
Logger
log
=
getLogger
(
getClass
());
...
...
Please
register
or
login
to post a comment