ソースを参照

remove all items from remapped sets since we cant backfill them anyway

stashes
Fusl 2年前
コミット
29872a3458
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      main.go

+ 2
- 2
main.go ファイルの表示

@@ -269,9 +269,9 @@ func (that *Offloader) Do() {
log.Printf("unable to scard %s: %s", key, err)
continue
}
if scard > watermarkHigh {
if scard > watermarkHigh || (k != q && scard > 0) {
spopLimit := scard - watermarkHigh
if spopLimit > batchSize {
if k != q || spopLimit > batchSize {
spopLimit = batchSize
}
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Minute)


読み込み中…
キャンセル
保存