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
Qianqian Hu
2015-12-29 09:32:37 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6b530ac669777a15848087e58eac9aa6a3c81af6
6b530ac6
1 parent
33836dff
Fixing a bug in XosIntegration
Change-Id: I5b4ff467f591fd5e5dd74ea72932704db35d3bf1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 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 @
6b530ac
...
...
@@ -279,7 +279,7 @@ public class OnosXosIntegrationManager implements VoltTenantService {
response
=
builder
.
post
(
ClientResponse
.
class
,
json
);
}
catch
(
ClientHandlerException
e
)
{
log
.
warn
(
"Unable to contact REST server: {}"
,
e
.
getMessage
());
return
"{
'error' : 'oops no one home'
}"
;
return
"{
\"error\" : \"oops no one home\"
}"
;
}
if
(
response
.
getStatus
()
!=
HTTP_CREATED
)
{
...
...
Please
register
or
login
to post a comment