File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/lib/replication/service Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 99
1010class HomestoreConan (ConanFile ):
1111 name = "homestore"
12- version = "6.5.22 "
12+ version = "6.5.23 "
1313
1414 homepage = "https://github.com/eBay/Homestore"
1515 description = "HomeStore Storage Engine"
Original file line number Diff line number Diff line change @@ -128,7 +128,8 @@ void RaftReplService::start() {
128128 // We need to first load the repl_dev with its config and then attach the raft config to that repl dev.
129129 for (auto const & [buf, mblk] : m_config_sb_bufs) {
130130 auto rdev = raft_group_config_found (buf, voidptr_cast (mblk));
131- rdev->on_restart ();
131+ // if repl_dev is in destroy_pending state, it will not be loaded.
132+ if (rdev) rdev->on_restart ();
132133 }
133134 m_config_sb_bufs.clear ();
134135 LOGINFO (" Repl devs load completed, calling upper layer on_repl_devs_init_completed" );
You can’t perform that action at this time.
0 commit comments