Doh! Eliminated use of deprecated port number.
Change-Id: I0ec2ea746205e891a18ad9973f5787170f9ebc33
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -85,7 +85,7 @@ public class DatabaseManager implements StorageService, StorageAdminService { | ... | @@ -85,7 +85,7 @@ public class DatabaseManager implements StorageService, StorageAdminService { |
| 85 | 85 | ||
| 86 | private final Logger log = getLogger(getClass()); | 86 | private final Logger log = getLogger(getClass()); |
| 87 | 87 | ||
| 88 | - public static final int COPYCAT_TCP_PORT = 7238; // 7238 = RAFT | 88 | + public static final int COPYCAT_TCP_PORT = 9876; |
| 89 | public static final String PARTITION_DEFINITION_FILE = "../config/tablets.json"; | 89 | public static final String PARTITION_DEFINITION_FILE = "../config/tablets.json"; |
| 90 | public static final String BASE_PARTITION_NAME = "p0"; | 90 | public static final String BASE_PARTITION_NAME = "p0"; |
| 91 | 91 | ... | ... |
-
Please register or login to post a comment