Merge "Default the impl_memory conf to none"

This commit is contained in:
Jenkins
2014-05-15 06:12:06 +00:00
committed by Gerrit Code Review

View File

@@ -32,7 +32,7 @@ class MemoryBackend(base.Backend):
"""A backend that writes logbooks, flow details, and task details to in
memory dictionaries.
"""
def __init__(self, conf):
def __init__(self, conf=None):
super(MemoryBackend, self).__init__(conf)
self._log_books = {}
self._flow_details = {}