diff options
| author | Xiao Chen <chenxiao@cn.ibm.com> | 2014-01-20 15:29:55 +0800 |
|---|---|---|
| committer | Xiao Chen <chenxiao@cn.ibm.com> | 2014-01-20 15:43:31 +0800 |
| commit | 2f0863b7d4d20198f496534d5ffef85e68ff45fc (patch) | |
| tree | a293cb812c806c365ca06b5c511542f2bf222edb /doc/source | |
| parent | a1a36499f428781c1966db7090001128a6abd888 (diff) | |
| download | python-cinderclient-2f0863b7d4d20198f496534d5ffef85e68ff45fc.tar.gz | |
Fix 'search_opts' unexpected keyword argument error
When executing 'encryption-type-create' command using resource
name, it will use the findall() in base.py, then error will
occur because list() in findall() used 'search_opts' argument
which list() in VolumeEncryptionTypeManager did not have. Some
other command like 'transfer-delete' met same issue.
This patch will add 'search_opts' argument in list() function
in child class to avoid the bug.
Closes-Bug: #1248519
Related-Bug: #1252665
Change-Id: If1cd8b812af21335e5d4351766539a927a8fbdf4
Diffstat (limited to 'doc/source')
| -rw-r--r-- | doc/source/index.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/source/index.rst b/doc/source/index.rst index 8475660..5f40bb1 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -43,6 +43,7 @@ MASTER .. _1251385: http://bugs.launchpad.net/python-cinderclient/+bug/1251385 .. _1264415: http://bugs.launchpad.net/python-cinderclient/+bug/1264415 .. _1258489: http://bugs.launchpad.net/python-cinderclient/+bug/1258489 +.. _1248519: http://bugs.launchpad.net/python-cinderclient/+bug/1248519 1.0.7 ----- |
