Return-Path: X-Original-To: apmail-curator-commits-archive@minotaur.apache.org Delivered-To: apmail-curator-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id F043217EFD for ; Sat, 9 May 2015 17:40:15 +0000 (UTC) Received: (qmail 80087 invoked by uid 500); 9 May 2015 17:40:15 -0000 Delivered-To: apmail-curator-commits-archive@curator.apache.org Received: (qmail 80057 invoked by uid 500); 9 May 2015 17:40:15 -0000 Mailing-List: contact commits-help@curator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@curator.apache.org Delivered-To: mailing list commits@curator.apache.org Received: (qmail 80048 invoked by uid 99); 9 May 2015 17:40:15 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 May 2015 17:40:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6B893E0414; Sat, 9 May 2015 17:40:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: randgalt@apache.org To: commits@curator.apache.org Message-Id: <36f34f2a7ed2420599f0f5996c0bdae6@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: curator git commit: fixed inBackground() calls Date: Sat, 9 May 2015 17:40:15 +0000 (UTC) Repository: curator Updated Branches: refs/heads/CURATOR-160 5c8833ca7 -> fc45a4ec8 fixed inBackground() calls Project: http://git-wip-us.apache.org/repos/asf/curator/repo Commit: http://git-wip-us.apache.org/repos/asf/curator/commit/fc45a4ec Tree: http://git-wip-us.apache.org/repos/asf/curator/tree/fc45a4ec Diff: http://git-wip-us.apache.org/repos/asf/curator/diff/fc45a4ec Branch: refs/heads/CURATOR-160 Commit: fc45a4ec8ab3f5e00c3ec04f03a80e5dda555f5e Parents: 5c8833c Author: randgalt Authored: Sat May 9 12:40:08 2015 -0500 Committer: randgalt Committed: Sat May 9 12:40:08 2015 -0500 ---------------------------------------------------------------------- .../org/apache/curator/framework/imps/GetConfigBuilderImpl.java | 2 +- .../org/apache/curator/framework/imps/ReconfigBuilderImpl.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/curator/blob/fc45a4ec/curator-framework/src/main/java/org/apache/curator/framework/imps/GetConfigBuilderImpl.java ---------------------------------------------------------------------- diff --git a/curator-framework/src/main/java/org/apache/curator/framework/imps/GetConfigBuilderImpl.java b/curator-framework/src/main/java/org/apache/curator/framework/imps/GetConfigBuilderImpl.java index b65f863..c9bbbf6 100644 --- a/curator-framework/src/main/java/org/apache/curator/framework/imps/GetConfigBuilderImpl.java +++ b/curator-framework/src/main/java/org/apache/curator/framework/imps/GetConfigBuilderImpl.java @@ -80,7 +80,7 @@ public class GetConfigBuilderImpl implements GetConfigBuilder, BackgroundOperati @Override public Ensembleable inBackground() { - backgrounding = new Backgrounding(); + backgrounding = new Backgrounding(true); return this; } http://git-wip-us.apache.org/repos/asf/curator/blob/fc45a4ec/curator-framework/src/main/java/org/apache/curator/framework/imps/ReconfigBuilderImpl.java ---------------------------------------------------------------------- diff --git a/curator-framework/src/main/java/org/apache/curator/framework/imps/ReconfigBuilderImpl.java b/curator-framework/src/main/java/org/apache/curator/framework/imps/ReconfigBuilderImpl.java index 761c8ad..f4dba90 100644 --- a/curator-framework/src/main/java/org/apache/curator/framework/imps/ReconfigBuilderImpl.java +++ b/curator-framework/src/main/java/org/apache/curator/framework/imps/ReconfigBuilderImpl.java @@ -203,7 +203,7 @@ public class ReconfigBuilderImpl implements @Override public ReconfigBuilderMain inBackground() { - backgrounding = new Backgrounding(); + backgrounding = new Backgrounding(true); return this; }