Skip to content

Commit

Permalink
pull "full" config for diff merges. (#1732)
Browse files Browse the repository at this point in the history
  • Loading branch information
ITJamie committed Oct 14, 2022
1 parent 7ecb9b9 commit df06def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm/nxos/nxos.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def _get_merge_diff(self) -> str:
interface loopback0
ip address 10.1.4.5/32
"""
running_config = self.get_config(retrieve="running")["running"]
running_config = self.get_config(retrieve="running", full=True)["running"]
return diff_network_config(self.merge_candidate, running_config, "cisco_nxos")

def _get_diff(self) -> str:
Expand Down

0 comments on commit df06def

Please sign in to comment.