Skip to content

Commit

Permalink
osfv_cli/osfv_cli/osfv_cli.py: add missing arg to RTE()
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Pijanowski <[email protected]>
  • Loading branch information
macpijan committed Sep 20, 2023
1 parent 4d1f869 commit 2812060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osfv_cli/osfv_cli/osfv_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def main():
asset_id = snipeit_api.get_asset_id_by_rte_ip(args.rte_ip)
dut_model_name = snipeit_api.get_asset_model_name(asset_id)
print(f"DUT model retrieved from snipeit: {dut_model_name}")
rte = RTE(args.rte_ip, dut_model_name)
rte = RTE(args.rte_ip, dut_model_name, snipeit_api)

if args.rte_cmd == "rel":
# Handle RTE relay related commands
Expand Down

0 comments on commit 2812060

Please sign in to comment.