Skip to content

Commit

Permalink
Merge pull request #265 from vilnitsky/recovery-timeout
Browse files Browse the repository at this point in the history
fixed to core recovery_timeout paramater
  • Loading branch information
lhopps authored Sep 2, 2022
2 parents 27fd09c + 6fb72f8 commit 25ee766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netman/api/objects/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def to_api(self, interface):

def to_core(self, serialized):
params = dict(vars(base_interface.to_core(serialized)))
params.update(sub_dict(serialized, 'name', 'bond_master', 'auto_negotiation', 'force_up', 'recovery_timeout'))
params.update(sub_dict(serialized, 'name', 'bond_master', 'auto_negotiation', 'force_up'))
return Interface(**params)


Expand Down

0 comments on commit 25ee766

Please sign in to comment.