Skip to content

Commit

Permalink
config-perf: prelim staged commit for adding filter to list api.
Browse files Browse the repository at this point in the history
This diff is needed for a follow-up commit in generateDS

Change-Id: I987218043568a1b69e6b54a5a1ecc1e35d49ad44
Partial-Bug: #1462156
  • Loading branch information
Hampapur Ajay authored and opencontrail-ci-admin committed Jun 6, 2015
1 parent d4da899 commit 1d5ea2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config/api-server/vnc_cfg_ifmap.py
Expand Up @@ -1493,13 +1493,13 @@ def dbe_update(self, obj_type, obj_ids, new_obj_dict):
# end dbe_update

def dbe_list(self, obj_type, parent_uuids=None, back_ref_uuids=None,
obj_uuids=None, count=False, paginate_start=None,
paginate_count=None):
obj_uuids=None, count=False, filters=None,
paginate_start=None, paginate_count=None):
method_name = obj_type.replace('-', '_')
(ok, cassandra_result) = self._cassandra_db.list(
method_name, parent_uuids=parent_uuids,
back_ref_uuids=back_ref_uuids, obj_uuids=obj_uuids,
count=count)
count=count, filters=filters)
return (ok, cassandra_result)
# end dbe_list

Expand Down

0 comments on commit 1d5ea2e

Please sign in to comment.