Merge pull request #5287 from taosdata/fix/TD-3073
[TD-3073]<fix>: fix syncing role not displayed issue
This commit is contained in:
commit
2d369838cc
|
@ -276,7 +276,8 @@ void *syncRestoreData(void *param) {
|
||||||
atomic_add_fetch_32(&tsSyncNum, 1);
|
atomic_add_fetch_32(&tsSyncNum, 1);
|
||||||
sInfo("%s, start to restore data, sstatus:%s", pPeer->id, syncStatus[nodeSStatus]);
|
sInfo("%s, start to restore data, sstatus:%s", pPeer->id, syncStatus[nodeSStatus]);
|
||||||
|
|
||||||
(*pNode->notifyRoleFp)(pNode->vgId, TAOS_SYNC_ROLE_SYNCING);
|
nodeRole = TAOS_SYNC_ROLE_SYNCING;
|
||||||
|
(*pNode->notifyRoleFp)(pNode->vgId, nodeRole);
|
||||||
|
|
||||||
if (syncOpenRecvBuffer(pNode) < 0) {
|
if (syncOpenRecvBuffer(pNode) < 0) {
|
||||||
sError("%s, failed to allocate recv buffer, restart connection", pPeer->id);
|
sError("%s, failed to allocate recv buffer, restart connection", pPeer->id);
|
||||||
|
|
Loading…
Reference in New Issue