bd4ecea505
Change-Id: I5c4e51cd9cd97b05ab9a95cbe084ff2741f6ef58 Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com> Reviewed-on: https://review.gerrithub.io/402323 Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Tested-by: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
11 lines
263 B
Python
Executable File
11 lines
263 B
Python
Executable File
from client import print_dict, print_array, int_arg
|
|
|
|
|
|
def get_subsystems(args):
|
|
print_dict(args.client.call('get_subsystems'))
|
|
|
|
|
|
def get_subsystem_config(args):
|
|
params = {'name': args.name}
|
|
print_dict(args.client.call('get_subsystem_config', params))
|