Skip to content

Commit

Permalink
Merge pull request #5974 from chloerh/fix-conn
Browse files Browse the repository at this point in the history
Fixup:no default value when trying to get parameter value
  • Loading branch information
Yingshun authored Nov 1, 2024
2 parents a1cc22c + 6139acc commit 0d32ebf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run(test, params, env):
iface_mtu = params.get('iface_mtu')
iface_mtu_2 = params.get('iface_mtu_2')
iface_attrs = eval(params.get('iface_attrs'))
iface_attrs_2 = eval(params.get('iface_attrs_2'))
iface_attrs_2 = eval(params.get('iface_attrs_2', '{}'))
iface_amount = params.get('iface_amount')
outside_ip = params.get('outside_ip')
host_iface = params.get('host_iface')
Expand Down

0 comments on commit 0d32ebf

Please sign in to comment.