From: Zack Cerza Date: Fri, 14 Jan 2022 19:10:14 +0000 (-0700) Subject: teuthology-update-inventory: Call Remote.connect() X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=0d5fc3627b6aad78b04f1c6d0da0a495a45cc909;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 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)