From a8a468efac5c547caee173286c82e03d1867ae4b Mon Sep 17 00:00:00 2001 From: Paul Barker Date: Fri, 5 Feb 2021 11:26:04 +0000 Subject: bitbake: bitbake-hashclient: Remove obsolete call to client.connect The connect function was previously removed from the hashserv Client class but the bitbake-hashclient app was not updated. The client is connected during hashserv.create_client() anyway so not separate connect call is needed. (Bitbake rev: 99bdb236bceeffa0083a0fa529280b217c1d310d) Signed-off-by: Paul Barker Signed-off-by: Richard Purdie --- bitbake/bin/bitbake-hashclient | 3 --- 1 file changed, 3 deletions(-) (limited to 'bitbake/bin/bitbake-hashclient') diff --git a/bitbake/bin/bitbake-hashclient b/bitbake/bin/bitbake-hashclient index 29ab65f177..a89290217b 100755 --- a/bitbake/bin/bitbake-hashclient +++ b/bitbake/bin/bitbake-hashclient @@ -151,9 +151,6 @@ def main(): func = getattr(args, 'func', None) if func: client = hashserv.create_client(args.address) - # Try to establish a connection to the server now to detect failures - # early - client.connect() return func(args, client) -- cgit v1.2.3-54-g00ecf