The new name is consistent with the naming scheme of <subsystem>_<action> that all of our other RPCs use. Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Change-Id: I2cae7af5715add8eba26501cd192a6ac4884ec69 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/13952 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Tom Nabarro <tom.nabarro@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
8 lines
167 B
Python
8 lines
167 B
Python
from .helpers import deprecated_alias
|
|
|
|
|
|
@deprecated_alias('enable_vmd')
|
|
def vmd_enable(client):
|
|
"""Enable VMD enumeration."""
|
|
return client.call('vmd_enable')
|