fix a bug when decoding image name_owner_type in taskmgr
This commit is contained in:
parent
2eb187c066
commit
5925cf6764
|
@ -687,9 +687,9 @@ class TaskMgr(threading.Thread):
|
||||||
username = username,
|
username = username,
|
||||||
vnode = VNode(
|
vnode = VNode(
|
||||||
image = Image(
|
image = Image(
|
||||||
name = json_task['image'].split('_')[0], #json_task['cluster']['image']['name'],
|
name = '_'.join(json_task['image'].split('_')[:-2]), #json_task['cluster']['image']['name'],
|
||||||
type = image_dict[json_task['image'].split('_')[2]], #json_task['cluster']['image']['type'],
|
type = image_dict[json_task['image'].split('_')[-1]], #json_task['cluster']['image']['type'],
|
||||||
owner = username if not json_task['image'].split('_')[1] else json_task['image'].split('_')[1]), #json_task['cluster']['image']['owner']),
|
owner = username if not json_task['image'].split('_')[-2] else json_task['image'].split('_')[-2]), #json_task['cluster']['image']['owner']),
|
||||||
instance = Instance(
|
instance = Instance(
|
||||||
cpu = int(json_task['cpuSetting']),
|
cpu = int(json_task['cpuSetting']),
|
||||||
memory = int(json_task['memorySetting']),
|
memory = int(json_task['memorySetting']),
|
||||||
|
|
Loading…
Reference in New Issue