filer: etcd fix pagination

fix https://github.com/chrislusf/seaweedfs/issues/3016
This commit is contained in:
chrislu
2022-05-06 01:51:19 -07:00
parent 362dec87a3
commit d5fe5d12b7
3 changed files with 83 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package etcd
import (
"github.com/chrislusf/seaweedfs/weed/filer/store_test"
"testing"
)
func TestStore(t *testing.T) {
if false {
store := &EtcdStore{}
store.initialize("localhost:2379", "3s")
store_test.TestFilerStore(t, store)
}
}