From 5b7fc319f2732c280e7f53afef2e50aece229cc5 Mon Sep 17 00:00:00 2001 From: xuweibj Date: Mon, 18 Mar 2019 01:37:14 -0400 Subject: [PATCH] fix issue 6111, make args passed into be string --- xCAT-openbmc-py/lib/python/agent/xcatagent/server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-openbmc-py/lib/python/agent/xcatagent/server.py b/xCAT-openbmc-py/lib/python/agent/xcatagent/server.py index 7a676975a..5b33a880a 100644 --- a/xCAT-openbmc-py/lib/python/agent/xcatagent/server.py +++ b/xCAT-openbmc-py/lib/python/agent/xcatagent/server.py @@ -101,7 +101,7 @@ class Server(object): new_args=[] if req['args']: for a in req['args']: - new_args.append(a) + new_args.append(str(a)) # call the function in the specified manager func(req['nodeinfo'], new_args) # after the method returns, the request should be handled