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

Add lock_configuration, unlock_configuration and load_configuration #153

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions fake_switches/netconf/capabilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,15 @@ def unlock(self, request):
self.datastore.unlock(resolve_source_name(target[0].tag))
return Response(etree.Element("ok"))

def lock_configuration(self, request):
return Response(etree.Element("ok"), require_disconnect=False)

def unlock_configuration(self, request):
return Response(etree.Element("ok"), require_disconnect=False)

def load_configuration(self, request):
return Response(etree.Element("ok"), require_disconnect=False)

def discard_changes(self, _):
self.datastore.reset()
return Response(etree.Element("ok"))
Expand Down