fix:change ask ep to 20s

This commit is contained in:
wangmm0220 2023-03-03 18:22:26 +08:00
parent dfeb3fb458
commit 6c68b36d7f
1 changed files with 1 additions and 1 deletions

View File

@ -1162,7 +1162,7 @@ int32_t tmq_subscribe(tmq_t* tmq, const tmq_list_t* topic_list) {
int32_t retryCnt = 0;
while (TSDB_CODE_MND_CONSUMER_NOT_READY == tmqAskEp(tmq, false)) {
if (retryCnt++ > 10) {
if (retryCnt++ > 40) {
goto FAIL;
}