summaryrefslogtreecommitdiffstats
path: root/ipalib/backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/backend.py')
-rw-r--r--ipalib/backend.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/ipalib/backend.py b/ipalib/backend.py
index 0c93b16e6..da7fc2922 100644
--- a/ipalib/backend.py
+++ b/ipalib/backend.py
@@ -102,6 +102,9 @@ class Executioner(Backend):
else:
self.Backend.xmlclient.connect()
+ def destroy_context(self):
+ destroy_context()
+
def execute(self, _name, *args, **options):
error = None
try:
@@ -115,7 +118,6 @@ class Executioner(Backend):
'non-public: %s: %s', e.__class__.__name__, str(e)
)
error = InternalError()
- destroy_context()
if error is None:
return result
assert isinstance(error, PublicError)