aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorPaul Barker <pbarker@konsulko.com>2021-02-05 11:26:04 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-05 12:09:30 +0000
commit99bdb236bceeffa0083a0fa529280b217c1d310d (patch)
treea964957f37449d30ea2df766faddfbd0bc7c3275 /bin
parent3ce4b2caccfe608a54dff159459f3687ea610597 (diff)
downloadbitbake-99bdb236bceeffa0083a0fa529280b217c1d310d.tar.gz
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. Signed-off-by: Paul Barker <pbarker@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake-hashclient3
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/bitbake-hashclient b/bin/bitbake-hashclient
index 29ab65f17..a89290217 100755
--- a/bin/bitbake-hashclient
+++ b/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)