scripts/rpc.py: remove get_luns wrapper

The get_luns RPC call was removed in commit a862d1cdd6 ("scsi: remove
lun_db"), but accidentally reintroduced in commit 4dd3f4a7fa ("rpc:
Break rpc client into individual python files").

Change-Id: Ie9e5241234e59ffdc19c86083d3d8ea753c6bc17
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/404425
Tested-by: SPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Dariusz Stojaczyk <dariuszx.stojaczyk@intel.com>
Reviewed-by: Paul Luse <paul.e.luse@intel.com>
This commit is contained in:
Daniel Verkamp 2018-03-19 15:53:24 -07:00 committed by Jim Harris
parent 3fe80a337c
commit 3c4d173b79

View File

@ -1,10 +1,6 @@
from client import print_dict, print_array, int_arg from client import print_dict, print_array, int_arg
def get_luns(args):
print_dict(args.client.call('get_luns'))
def get_portal_groups(args): def get_portal_groups(args):
print_dict(args.client.call('get_portal_groups')) print_dict(args.client.call('get_portal_groups'))