Revert "Make proxy process data definition requests concurrently (#20503)" (#20566)

This reverts commit 911921d5a7c3f5fc5f77e85dd80e8899e669e543.

Signed-off-by: yah01 <yang.cen@zilliz.com>

Signed-off-by: yah01 <yang.cen@zilliz.com>
This commit is contained in:
yah01 2022-11-15 00:41:06 +08:00 committed by GitHub
parent 0ae4e5265f
commit bec1d4c50f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -482,7 +482,7 @@ func (sched *taskScheduler) definitionLoop() {
case <-sched.ddQueue.utChan():
if !sched.ddQueue.utEmpty() {
t := sched.scheduleDdTask()
go sched.processTask(t, sched.ddQueue)
sched.processTask(t, sched.ddQueue)
}
}
}