Skip to content

Commit

Permalink
Fix review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-v committed Dec 18, 2020
1 parent 2303e11 commit 56b8381
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions delfin/api/v1/disks.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class DiskController(wsgi.Controller):

def __init__(self):
super(DiskController, self).__init__()
self.search_options = ['name', 'status', 'id', 'storage_id', 'wwn',
'native_controller_id', 'native_disk_id']
self.search_options = ['name', 'status', 'id', 'storage_id',
'native_disk_id']

def _get_disks_search_options(self):
"""Return disks search options allowed ."""
Expand Down
1 change: 1 addition & 0 deletions delfin/drivers/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def list_controllers(self, context):
@abc.abstractmethod
def list_ports(self, context):
"""List all ports from storage system."""
pass

@abc.abstractmethod
def list_disks(self, context):
Expand Down

0 comments on commit 56b8381

Please sign in to comment.