mirror of https://github.com/milvus-io/milvus.git
Fix ttFactor in QuoterCenter (#19802)
Signed-off-by: bigsheeper <yihao.dai@zilliz.com> Signed-off-by: bigsheeper <yihao.dai@zilliz.com>pull/19803/head
parent
89c9cb3680
commit
a92b242ecd
|
@ -355,7 +355,7 @@ func (q *QuotaCenter) calculateWriteRates() error {
|
|||
}
|
||||
log.Debug("QuotaCenter check memoryWaterLevel done", zap.Float64("memFactor", memFactor))
|
||||
|
||||
if ttFactor < memFactor {
|
||||
if memFactor < ttFactor {
|
||||
ttFactor = memFactor
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue