From 0d5fc3627b6aad78b04f1c6d0da0a495a45cc909 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 14 Jan 2022 12:10:14 -0700 Subject: [PATCH] teuthology-update-inventory: Call Remote.connect() Signed-off-by: Zack Cerza --- scripts/update_inventory.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/update_inventory.py b/scripts/update_inventory.py index 58c5d77a3c..73da8aa67f 100644 --- a/scripts/update_inventory.py +++ b/scripts/update_inventory.py @@ -31,5 +31,6 @@ def main(): for rem_name in remotes: rem_name = teuthology.misc.canonicalize_hostname(rem_name) remote = teuthology.orchestra.remote.Remote(rem_name) + remote.connect() inventory_info = remote.inventory_info teuthology.lock.ops.update_inventory(inventory_info) -- 2.39.5