Repository: curator Updated Branches: refs/heads/CURATOR-495 4fa5c1d4d -> 2e802efed
CURATOR-495 runSafeService should return this Project: http://git-wip-us.apache.org/repos/asf/curator/repo Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/2e802efe Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/2e802efe Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/2e802efe Branch: refs/heads/CURATOR-495 Commit: 2e802efeddd28b3cd6c0d96fb0708c0f0a94a35c Parents: 4fa5c1d Author: randgalt <[email protected]> Authored: Sun Dec 16 19:59:06 2018 -0500 Committer: randgalt <[email protected]> Committed: Sun Dec 16 19:59:06 2018 -0500 ---------------------------------------------------------------------- .../java/org/apache/curator/framework/CuratorFrameworkFactory.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/curator/blob/2e802efe/curator-framework/src/main/java/org/apache/curator/framework/CuratorFrameworkFactory.java ---------------------------------------------------------------------- diff --git a/curator-framework/src/main/java/org/apache/curator/framework/CuratorFrameworkFactory.java b/curator-framework/src/main/java/org/apache/curator/framework/CuratorFrameworkFactory.java index 86fbfce..395df71 100644 --- a/curator-framework/src/main/java/org/apache/curator/framework/CuratorFrameworkFactory.java +++ b/curator-framework/src/main/java/org/apache/curator/framework/CuratorFrameworkFactory.java @@ -491,7 +491,7 @@ public class CuratorFrameworkFactory public Builder runSafeService(Executor runSafeService) { this.runSafeService = runSafeService; - return null; + return this; } public Executor getRunSafeService()
