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
2014-12-03 22:33:14 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
de0891214351eb11e3b0ac8d8ce8816e60fbb481
de089121
1 parent
51372183
Minor refactoring
Change-Id: I57198890b5fd833ba0f3368197d074a5fdc1d3e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
apps/sdnip/src/main/java/org/onosproject/sdnip/PeerConnectivityManager.java
apps/sdnip/src/main/java/org/onosproject/sdnip/PeerConnectivityManager.java
View file @
de08912
...
...
@@ -77,9 +77,13 @@ public class PeerConnectivityManager {
public
void
start
()
{
if
(
interfaceService
.
getInterfaces
().
isEmpty
())
{
log
.
warn
(
"No interfaces found in configuration file"
);
}
else
if
(
configService
.
getBgpPeers
().
isEmpty
())
{
}
if
(
configService
.
getBgpPeers
().
isEmpty
())
{
log
.
warn
(
"No BGP peers found in configuration file"
);
}
else
if
(
configService
.
getBgpSpeakers
().
isEmpty
())
{
}
if
(
configService
.
getBgpSpeakers
().
isEmpty
())
{
log
.
error
(
"No BGP speakers found in configuration file"
);
}
...
...
Please
register
or
login
to post a comment