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
2015-06-05 10:54:29 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8e36be58a94ebd7f9eace187f4b20cc50784183c
8e36be58
1 parent
851f2f81
Minor fix for pushing fabric VLANs
Change-Id: I9f27cb24df147c64051d6da66cc9c392d063246c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java
apps/xos-integration/src/main/java/org/onosproject/xosintegration/OnosXOSIntegrationManager.java
View file @
8e36be5
...
...
@@ -432,9 +432,9 @@ public class OnosXOSIntegrationManager implements VoltTenantService {
.
type
(
JSON_UTF_8
.
toString
());
try
{
builder
.
post
(
ClientResponse
.
class
,
node
);
builder
.
post
(
ClientResponse
.
class
,
node
.
toString
()
);
}
catch
(
ClientHandlerException
e
)
{
log
.
warn
(
"Unable to contact fabric REST server:"
,
e
.
getMessage
());
log
.
warn
(
"Unable to contact fabric REST server:
{}
"
,
e
.
getMessage
());
return
;
}
}
...
...
Please
register
or
login
to post a comment