Skip to content
Snippets Groups Projects
Commit 1d8c8fc2 authored by Mohammad Torkashvand's avatar Mohammad Torkashvand
Browse files

Merge branch 'fix/exclusiv-lock-netconf' into 'develop'

fix exclusive lock issue in netconf connection in private_mode

See merge request !195
parents 6cadab86 15eeb9d3
No related branches found
No related tags found
1 merge request!195fix exclusive lock issue in netconf connection in private_mode
Pipeline #90476 passed
# GAP Ansible changelog
1.1.16 2024-11-20
- Fixed remaining issue with netconf exclusive lock by introducing lock=never
1.1.15 2024-11-12
- Fixed `ansible_connection` setting in `ibgp_update` role.
- PE-specific SNMP communities in PE base config and `promote_p_to_pe`.
......
......@@ -8,7 +8,7 @@ namespace: geant
name: gap_ansible
# The version of the collection. Must be compatible with semantic versioning
version: 1.1.15
version: 1.1.16
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md
......
......@@ -556,6 +556,7 @@ def main():
if config_mode and config_mode == ConfigMode.PRIVATE.value:
# with this PR https://github.com/ncclient/ncclient/pull/594 we only added private mode
conn.set_config_mode(config_mode)
lock = "never"
capabilities = get_capabilities(module)
operations = capabilities["device_operations"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment