Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nxos_evpn_vni issue with check not showing changed #884

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion plugins/modules/nxos_evpn_vni.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def main():
candidate = candidate.items_text()
if not module.check_mode:
load_config(module, candidate)
results["changed"] = True
results["changed"] = True
results["commands"] = candidate
else:
results["commands"] = []
Expand Down
Loading