Browse Source

fix rocksdb

pull/1748/head
Chris Lu 4 years ago
parent
commit
01dc8a43ba
  1. 4
      weed/filer/rocksdb/rocksdb_store.go

4
weed/filer/rocksdb/rocksdb_store.go

@ -175,7 +175,7 @@ func (store *RocksDBStore) DeleteFolderChildren(ctx context.Context, fullpath we
return nil
}
func enumerate(iter *gorocksdb.Iterator, prefix, lastKey []byte, includeLastKey bool, limit int, fn func(key, value []byte) bool) (hasMore bool, err error) {
func enumerate(iter *gorocksdb.Iterator, prefix, lastKey []byte, includeLastKey bool, limit int64, fn func(key, value []byte) bool) (hasMore bool, err error) {
if len(lastKey) == 0 {
iter.Seek(prefix)
@ -190,7 +190,7 @@ func enumerate(iter *gorocksdb.Iterator, prefix, lastKey []byte, includeLastKey
}
}
i := 0
i := int64(0)
for ; iter.Valid(); iter.Next() {
if limit > 0 {

Loading…
Cancel
Save