Merge "[Fix for Bug 1631] - Refactored RaftActorBehavior#handleMessage (and related...
authorMoiz Raja <moraja@cisco.com>
Fri, 24 Oct 2014 06:23:22 +0000 (06:23 +0000)
committerGerrit Code Review <gerrit@opendaylight.org>
Fri, 24 Oct 2014 06:23:22 +0000 (06:23 +0000)
commit6d8afdbf6318fff992f9cbd4c3a528b3c520eae3
tree287f35b8e666b1f4b53b20118dc690a794bff9a1
parent16caeb9f5837c5ca2a40cd67213a9648e6727989
parent59c4f0b68407ad243976fa7e64ba19d39147abbe
Merge "[Fix for Bug 1631] - Refactored RaftActorBehavior#handleMessage (and related methods) to return RaftActorBehavior   instead of RaftActorState. - Moved behavior switching from RaftActor based on requested state to the implementations of the   behaviors that should control that switch (Leader/Follower/Candidate) based on the type of   message received. - Pull up logger reference for concrete RAFT behaviors to parent for a common LOG reference. - Updated all logger calls to:   - Use substitution instead of String concatenation.  - Debug logger calls are gated by isDebugEnabled check.  - Correctly use Akka logging API for stack trace on exception.  - Avoid toString() calls during logging.  - Use assigned logger instance (LOG) instead of call to context.getLogger()"