mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
Break page loop when no acked ts is nil (#12705)
Signed-off-by: fishpenguin <kun.yu@zilliz.com>
This commit is contained in:
parent
f4c7206992
commit
847d3e7d4a
@ -171,6 +171,9 @@ func (ri *retentionInfo) expiredCleanUp(topic string) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
if ackedTsVal == "" {
|
||||
break
|
||||
}
|
||||
ackedTs, err := strconv.ParseInt(ackedTsVal, 10, 64)
|
||||
if err != nil {
|
||||
return err
|
||||
|
Loading…
Reference in New Issue
Block a user