Miss the argument in db/driver.py

Miss the filter=None in db/driver.py, quick fix it.

Change-Id: I40c8bac056c9f837f5fe970b4352bedb5a8da18d
This commit is contained in:
wanghao 2017-07-20 15:00:19 +08:00
parent 041dafae06
commit 57bf079b60

@ -71,7 +71,7 @@ class Connection(object):
"""Get server by name."""
@abc.abstractmethod
def server_get_all(self, context, project_only):
def server_get_all(self, context, project_only, filters=None):
"""Get all servers."""
@abc.abstractmethod