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
(cherry picked from commit 051ff39a9c)
This commit is contained in:
Patrick East 2016-09-21 19:04:26 -07:00
parent d3f3791416
commit 8b36b66290
1 changed files with 1 additions and 1 deletions

View File

@ -4524,7 +4524,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)