From 4aca2424b2da612e1a1ad4ba258912a93bd2acd8 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 23 Oct 2022 17:39:44 +0000 Subject: [PATCH] client: Fix connection check Signed-off-by: Michael Tremer --- src/scripts/pakfire-client.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/pakfire-client.in b/src/scripts/pakfire-client.in index 698d238b9..6242d808e 100644 --- a/src/scripts/pakfire-client.in +++ b/src/scripts/pakfire-client.in @@ -135,7 +135,7 @@ class Cli(object): tmp.cleanup() async def _check_connection(self, hub, ns): - response = await hub.check_connection() + response = await hub.test() # Print the response from the service try: -- 2.39.5