Signed-off-by: Maciej Wawryk <maciejx.wawryk@intel.com> Change-Id: Iaeaf20e2a16b41796cb89a92fadd99cb1d341720 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/468670 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com>
12 lines
290 B
Python
12 lines
290 B
Python
from .helpers import deprecated_alias
|
|
|
|
|
|
@deprecated_alias('get_subsystems')
|
|
def framework_get_subsystems(client):
|
|
return client.call('framework_get_subsystems')
|
|
|
|
|
|
def get_subsystem_config(client, name):
|
|
params = {'name': name}
|
|
return client.call('get_subsystem_config', params)
|