Merge pull request #1578 from taosdata/hotfix/releasevnode
turn on the arbitrator code
This commit is contained in:
commit
8f13b5022f
|
@ -99,6 +99,7 @@ extern int tsMaxSyncNum;
|
|||
extern int tsSyncTcpThreads;
|
||||
extern int tsMaxWatchFiles;
|
||||
extern short tsSyncPort;
|
||||
extern int tsSyncTimer;
|
||||
extern int tsMaxFwdInfo;
|
||||
extern int sDebugFlag;
|
||||
|
||||
|
|
|
@ -375,7 +375,7 @@ static int32_t vnodeReadCfg(SVnodeObj *pVnode) {
|
|||
if (num != 2) return TSDB_CODE_INVALID_FILE_FORMAT;
|
||||
if (strcmp(option[0], "arbitratorIp") != 0) return TSDB_CODE_INVALID_FILE_FORMAT;
|
||||
if (arbitratorIp == -1) return TSDB_CODE_INVALID_FILE_FORMAT;
|
||||
pVnode->syncCfg.arbitratorIp = 0;
|
||||
pVnode->syncCfg.arbitratorIp = arbitratorIp;
|
||||
|
||||
int32_t quorum = -1;
|
||||
num = fscanf(fp, "%s %d", option[0], &quorum);
|
||||
|
|
Loading…
Reference in New Issue