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
Yuta HIGUCHI
2014-11-04 21:33:54 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5001ba960ff893ee6577084d7c200065f06cd507
5001ba96
1 parent
5e1cfe01
DatabaseManager: fix scope
Change-Id: I1e01623acf1a7197aea3e8d9dbc180c9b265f415
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/ClusterMessagingProtocol.java
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/ClusterMessagingProtocol.java
View file @
5001ba9
...
...
@@ -69,10 +69,10 @@ public class ClusterMessagingProtocol implements Protocol<TcpMember> {
private
final
Logger
log
=
getLogger
(
getClass
());
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterService
clusterService
;
protected
ClusterService
clusterService
;
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterCommunicationService
clusterCommunicator
;
protected
ClusterCommunicationService
clusterCommunicator
;
public
static
final
MessageSubject
COPYCAT_PING
=
new
MessageSubject
(
"copycat-raft-consensus-ping"
);
...
...
core/store/dist/src/main/java/org/onlab/onos/store/service/impl/DatabaseManager.java
View file @
5001ba9
...
...
@@ -49,10 +49,10 @@ public class DatabaseManager implements DatabaseService, DatabaseAdminService {
private
final
Logger
log
=
getLogger
(
getClass
());
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterService
clusterService
;
protected
ClusterService
clusterService
;
@Reference
(
cardinality
=
ReferenceCardinality
.
MANDATORY_UNARY
)
ClusterMessagingProtocol
copycatMessagingProtocol
;
protected
ClusterMessagingProtocol
copycatMessagingProtocol
;
public
static
final
String
LOG_FILE_PREFIX
=
"onos-copy-cat-log"
;
...
...
Please
register
or
login
to post a comment