We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81733b9 commit 318cb7bCopy full SHA for 318cb7b
1 file changed
tests/integration/server_test.go
@@ -797,7 +797,10 @@ var _ = Describe("Server", func() {
797
// Verify share-block-cache is enabled
798
shareBlockCacheConfig := client.ConfigGet(ctx, "share-block-cache")
799
Expect(shareBlockCacheConfig.Err()).NotTo(HaveOccurred())
800
- Expect(shareBlockCacheConfig.Val()).To(Equal(map[string]string{"share-block-cache": "yes"}))
+ shareBlockCacheVal := shareBlockCacheConfig.Val()["share-block-cache"]
801
+ if shareBlockCacheVal != "yes" {
802
+ return
803
+ }
804
805
info := client.Info(ctx, "rocksdb")
806
Expect(info.Err()).NotTo(HaveOccurred())
0 commit comments