Method
TestRaft
(String raftName, String raftConfigFileName)
Source from the content-addressed store, hash-verified
| 738 | private final String raftName; |
| 739 | |
| 740 | public TestRaft(String raftName, String raftConfigFileName) { |
| 741 | this.raftName = raftName; |
| 742 | this.raftConfigFileName = raftConfigFileName; |
| 743 | try { |
| 744 | startRaft(true); |
| 745 | } catch (Exception e) { |
| 746 | logger.error("TestRaft.TestRaft", e); |
| 747 | } |
| 748 | } |
| 749 | |
| 750 | public Raft getRaft() { |
| 751 | return raft; |
Callers
nothing calls this directly
Tested by
no test coverage detected