Merge pull request #4406 from taosdata/revert-4405-feature/wal
Revert "TD-1843"
This commit is contained in:
commit
70266acff8
|
@ -55,6 +55,7 @@ typedef struct {
|
||||||
} SMnodeComponent;
|
} SMnodeComponent;
|
||||||
|
|
||||||
void *tsMnodeTmr = NULL;
|
void *tsMnodeTmr = NULL;
|
||||||
|
static bool tsMgmtIsRunning = false;
|
||||||
static EMndStatus tsMgmtStatus = TSDB_MND_STATUS_NOT_RUNNING;
|
static EMndStatus tsMgmtStatus = TSDB_MND_STATUS_NOT_RUNNING;
|
||||||
|
|
||||||
static const SMnodeComponent tsMnodeComponents[] = {
|
static const SMnodeComponent tsMnodeComponents[] = {
|
||||||
|
@ -138,7 +139,7 @@ int32_t mnodeInitSystem() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void mnodeCleanupSystem() {
|
void mnodeCleanupSystem() {
|
||||||
if (mnodeIsRunning()) {
|
if (tsMgmtIsRunning) {
|
||||||
mInfo("starting to clean up mnode");
|
mInfo("starting to clean up mnode");
|
||||||
tsMgmtStatus = TSDB_MND_STATUS_CLEANING;
|
tsMgmtStatus = TSDB_MND_STATUS_CLEANING;
|
||||||
|
|
||||||
|
|
|
@ -1559,12 +1559,7 @@ static int rpcCheckAuthentication(SRpcConn *pConn, char *msg, int msgLen) {
|
||||||
if ( !rpcIsReq(pHead->msgType) ) {
|
if ( !rpcIsReq(pHead->msgType) ) {
|
||||||
// for response, if code is auth failure, it shall bypass the auth process
|
// for response, if code is auth failure, it shall bypass the auth process
|
||||||
code = htonl(pHead->code);
|
code = htonl(pHead->code);
|
||||||
#if 0
|
|
||||||
if (code != 0) {
|
if (code != 0) {
|
||||||
#else
|
|
||||||
if (code == TSDB_CODE_RPC_INVALID_TIME_STAMP || code == TSDB_CODE_RPC_AUTH_FAILURE ||
|
|
||||||
code == TSDB_CODE_RPC_AUTH_REQUIRED || code == TSDB_CODE_MND_INVALID_USER || code == TSDB_CODE_RPC_NOT_READY) {
|
|
||||||
#endif
|
|
||||||
// tTrace("%s, dont check authentication since code is:0x%x", pConn->info, code);
|
// tTrace("%s, dont check authentication since code is:0x%x", pConn->info, code);
|
||||||
pHead->msgLen = (int32_t)htonl((uint32_t)pHead->msgLen);
|
pHead->msgLen = (int32_t)htonl((uint32_t)pHead->msgLen);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue