From: Paul Barker Date: Wed, 28 Apr 2021 09:51:32 +0000 (+0100) Subject: prservice: Use new connect API X-Git-Tag: yocto-4.0~3576 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6bf39c5c8cf09e3f2ce6eba13b9d18193bce9655;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git prservice: Use new connect API The new prserv connect() function decouples the code in oe-core from the exact classes and implementation details used within bitbake. This allows us to more easily switch over to a new asyncrpc based prservice. Signed-off-by: Paul Barker Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/prservice.py b/meta/lib/oe/prservice.py index fcdbe66c198..15ce060ff66 100644 --- a/meta/lib/oe/prservice.py +++ b/meta/lib/oe/prservice.py @@ -7,7 +7,7 @@ def prserv_make_conn(d, check = False): host_params = list([_f for _f in (d.getVar("PRSERV_HOST") or '').split(':') if _f]) try: conn = None - conn = prserv.serv.PRServerConnection(host_params[0], int(host_params[1])) + conn = prserv.serv.connect(host_params[0], int(host_params[1])) if check: if not conn.ping(): raise Exception('service not available')