You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ra...@apache.org on 2020/03/23 15:30:31 UTC

[curator] 03/03: x

This is an automated email from the ASF dual-hosted git repository.

randgalt pushed a commit to branch CURATOR-549-zk36-persistent-watcher-bridge
in repository https://gitbox.apache.org/repos/asf/curator.git

commit 2ab880fb5e56dba01942e2cdb70bc1e2e027ad07
Author: randgalt <ra...@apache.org>
AuthorDate: Mon Mar 23 10:25:16 2020 -0500

    x
---
 .../curator/framework/recipes/cache/CuratorCacheBridgeBuilderImpl.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCacheBridgeBuilderImpl.java b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCacheBridgeBuilderImpl.java
index 7aebe59..2076992 100644
--- a/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCacheBridgeBuilderImpl.java
+++ b/curator-recipes/src/main/java/org/apache/curator/framework/recipes/cache/CuratorCacheBridgeBuilderImpl.java
@@ -69,7 +69,7 @@ class CuratorCacheBridgeBuilderImpl implements CuratorCacheBridgeBuilder
                 LoggerFactory.getLogger(getClass()).warn("CuratorCache does not support custom ExecutorService");
             }
             CuratorCacheStorage storage = cacheData ? CuratorCacheStorage.standard() : CuratorCacheStorage.bytesNotCached();
-            return new CuratorCacheImpl(client, storage, path, options, null);
+            return new CuratorCacheImpl(client, storage, path, options, null, null);
         }
         return new CompatibleCuratorCacheBridge(client, path, options, executorService, cacheData);
     }