From: Zack Cerza Date: Fri, 14 Jan 2022 19:10:14 +0000 (-0700) Subject: teuthology-update-inventory: Call Remote.connect() X-Git-Tag: 1.2.0~201^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F1714%2Fhead;p=teuthology.git teuthology-update-inventory: Call Remote.connect() Signed-off-by: Zack Cerza --- diff --git a/scripts/update_inventory.py b/scripts/update_inventory.py index 58c5d77a3..73da8aa67 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)