From patchwork Wed Feb 1 15:03:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel] Lianhao Lu : prserv: Do not ping PRService if not required Date: Wed, 01 Feb 2012 15:03:46 -0000 From: git@git.openembedded.org X-Patchwork-Id: 20487 Message-Id: <20120201150346.9428910339@opal> To: bitbake-devel@lists.openembedded.org Module: bitbake.git Branch: master Commit: 20f24de0bdafac21f5d8a58701f977efa7041288 URL: http://git.openembedded.org/?p=bitbake.git&a=commit;h=20f24de0bdafac21f5d8a58701f977efa7041288 Author: Lianhao Lu Date: Tue Jan 31 14:18:04 2012 +0800 prserv: Do not ping PRService if not required [YOCTO #1942] Ping the PRService only if PRSERV_HOST and PRSERV_PORT are set. Signed-off-by: Lianhao Lu Signed-off-by: Richard Purdie --- lib/prserv/serv.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/prserv/serv.py b/lib/prserv/serv.py index fa437f9..5567c6f 100644 --- a/lib/prserv/serv.py +++ b/lib/prserv/serv.py @@ -268,7 +268,7 @@ def is_local_special(host, port): def auto_start(d): global singleton - if d.getVar('USE_PR_SERV', True) == '0': + if (not d.getVar('PRSERV_HOST', True)) or (not d.getVar('PRSERV_PORT', True)): return True if is_local_special(d.getVar('PRSERV_HOST', True), int(d.getVar('PRSERV_PORT', True))) and not singleton: