Remove extra param in list_manageable_snapshots

The VolumeV3Proxy method was calling the manager
with an extra parameter. This removes it.

Change-Id: I8471ea9649a2c238aac9c2bd0ff7cd995ef7ffef
Closes-Bug: #1626351
This commit is contained in:
Patrick East 2016-09-21 19:04:26 -07:00
parent 4e2e29d1e5
commit 051ff39a9c
1 changed files with 1 additions and 1 deletions

View File

@ -4525,7 +4525,7 @@ class _VolumeV3Proxy(object):
def get_manageable_snapshots(self, ctxt, marker, limit, offset, sort_keys,
sort_dirs):
return self.manager.get_manageable_snapshots(
self, ctxt, marker, limit, offset, sort_keys, sort_dirs)
ctxt, marker, limit, offset, sort_keys, sort_dirs)
def get_capabilities(self, context, discover):
return self.manager.get_capabilities(context, discover)