fix(stream): fix bug in limiting concurrent checkpoints
This commit is contained in:
parent
6c7a8e9774
commit
d08a81cc98
|
@ -1312,7 +1312,7 @@ static int32_t mndProcessStreamCheckpoint(SRpcMsg *pReq) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int32_t numOfQual = taosArrayGetSize(pList);
|
int32_t numOfQual = taosArrayGetSize(pList);
|
||||||
if (numOfCheckpointTrans > tsMaxConcurrentCheckpoint) {
|
if (numOfCheckpointTrans >= tsMaxConcurrentCheckpoint) {
|
||||||
mDebug(
|
mDebug(
|
||||||
"%d stream(s) checkpoint interval longer than %ds, ongoing checkpoint trans:%d reach maximum allowed:%d, new "
|
"%d stream(s) checkpoint interval longer than %ds, ongoing checkpoint trans:%d reach maximum allowed:%d, new "
|
||||||
"checkpoint trans are not allowed, wait for 30s",
|
"checkpoint trans are not allowed, wait for 30s",
|
||||||
|
|
Loading…
Reference in New Issue