Merge pull request #13106 from taosdata/fix/mnode
fix: set standby while create mnode
This commit is contained in:
commit
38d69cc119
|
@ -219,17 +219,12 @@ void mndSyncStart(SMnode *pMnode) {
|
|||
SSyncMgmt *pMgmt = &pMnode->syncMgmt;
|
||||
syncSetMsgCb(pMgmt->sync, &pMnode->msgCb);
|
||||
|
||||
syncStart(pMgmt->sync);
|
||||
|
||||
#if 0
|
||||
if (pMgmt->standby) {
|
||||
syncStartStandBy(pMgmt->sync);
|
||||
} else {
|
||||
syncStart(pMgmt->sync);
|
||||
}
|
||||
#endif
|
||||
|
||||
mDebug("sync:%" PRId64 " is started", pMgmt->sync);
|
||||
mDebug("sync:%" PRId64 " is started, standby:%d", pMgmt->sync, pMgmt->standby);
|
||||
}
|
||||
|
||||
void mndSyncStop(SMnode *pMnode) {}
|
||||
|
|
|
@ -36,13 +36,14 @@ if $data(2)[4] != ready then
|
|||
goto step1
|
||||
endi
|
||||
|
||||
print =============== create drop mnode 1
|
||||
sql_error create mnode on dnode 1
|
||||
sql_error drop mnode on dnode 1
|
||||
|
||||
print =============== create mnode 2
|
||||
sql create mnode on dnode 2
|
||||
|
||||
$x = 0
|
||||
step1:
|
||||
step2:
|
||||
$x = $x + 1
|
||||
sleep 1000
|
||||
if $x == 20 then
|
||||
|
@ -65,11 +66,11 @@ if $data(2)[0] != 2 then
|
|||
return -1
|
||||
endi
|
||||
if $data(2)[2] != FOLLOWER then
|
||||
goto step1
|
||||
goto step2
|
||||
endi
|
||||
|
||||
sleep 2000
|
||||
print ============ drop mnodes
|
||||
print ============ drop mnode 2
|
||||
sql drop mnode on dnode 2
|
||||
sql show mnodes
|
||||
if $rows != 1 then
|
||||
|
|
Loading…
Reference in New Issue