You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
viz.py return an error when you try to invoke get_graph(workflow) if workflow contain a aapi.basefolder.SimpleFolder.
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Input In [17], in <cell line: 69>()
66 if workflow.deploy().is_ok():
67 print('The workflow was deployed to Control-M!')
---> 69 get_graph(workflow)
File ~/.local/lib/python3.10/site-packages/ctm_python_client/ext/viz.py:44, in get_graph(workflow)
41 for o in v.job_list:
42 cluster.node(f'{v.object_name}/{o.object_name}', o.object_name)
---> 44 for i,o in enumerate(v.sub_folder_list):
45 cluster.subgraph(get_subgraph(o,f'cluster_{v.object_name}/{o.object_name}_{i}',v.object_name+'/'+o.object_name))
48 dgraph.subgraph(cluster)
AttributeError: 'SimpleFolder' object has no attribute 'sub_folder_list'
The text was updated successfully, but these errors were encountered:
Hello,
viz.py return an error when you try to invoke get_graph(workflow) if workflow contain a aapi.basefolder.SimpleFolder.
The text was updated successfully, but these errors were encountered: