dv-flow-mgr 1.9.14984445659rc0__py3-none-any.whl → 1.9.15008554401rc0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dv_flow/mgr/__init__.py +1 -1
- dv_flow/mgr/task_graph_builder.py +20 -7
- dv_flow/mgr/task_listener_log.py +4 -3
- {dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/METADATA +1 -1
- {dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/RECORD +9 -9
- {dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/WHEEL +0 -0
- {dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/entry_points.txt +0 -0
- {dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/licenses/LICENSE +0 -0
- {dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/top_level.txt +0 -0
dv_flow/mgr/__init__.py
CHANGED
@@ -896,13 +896,26 @@ class TaskGraphBuilder(object):
|
|
896
896
|
elif isinstance(value, list):
|
897
897
|
new_val = []
|
898
898
|
for i,elem in enumerate(value):
|
899
|
-
if elem
|
900
|
-
if
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
899
|
+
if isinstance(elem, str):
|
900
|
+
if elem.find("${{") != -1:
|
901
|
+
if len(self._name_resolution_stack) > 0:
|
902
|
+
eval.set_name_resolution(self._name_resolution_stack[-1])
|
903
|
+
resolved = eval.eval(elem)
|
904
|
+
new_val.append(resolved)
|
905
|
+
else:
|
906
|
+
new_val.append(elem)
|
907
|
+
elif isinstance(elem, dict):
|
908
|
+
for k, v in elem.items():
|
909
|
+
if isinstance(v, str):
|
910
|
+
if v.find("${{") != -1:
|
911
|
+
if len(self._name_resolution_stack) > 0:
|
912
|
+
eval.set_name_resolution(self._name_resolution_stack[-1])
|
913
|
+
resolved = eval.eval(v)
|
914
|
+
new_val.append({k: resolved})
|
915
|
+
else:
|
916
|
+
new_val.append({k: v})
|
917
|
+
else:
|
918
|
+
new_val.append(elem)
|
906
919
|
return new_val
|
907
920
|
|
908
921
|
def _gatherNeeds(self, task_t, node):
|
dv_flow/mgr/task_listener_log.py
CHANGED
@@ -96,13 +96,14 @@ class TaskListenerLog(object):
|
|
96
96
|
else:
|
97
97
|
sev_pref = ""
|
98
98
|
|
99
|
+
# Escape anything that looks like a styling marker
|
100
|
+
marker_m = m.msg.replace("[", "\\[")
|
101
|
+
|
99
102
|
msg = " %s%s: %s" % (
|
100
103
|
sev_pref,
|
101
104
|
(" " + name) if name is not None and name != "" else "",
|
102
|
-
|
105
|
+
marker_m)
|
103
106
|
|
104
|
-
# Escape anything that looks like a styling marker
|
105
|
-
msg = msg.replace("[", "\\[")
|
106
107
|
|
107
108
|
|
108
109
|
if m.loc is not None:
|
{dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/RECORD
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
dv_flow/mgr/__init__.py,sha256
|
1
|
+
dv_flow/mgr/__init__.py,sha256=IQiJifqYb3hbXNG5kU7UttJPlhZ31XyFVisfvOypPHo,1315
|
2
2
|
dv_flow/mgr/__main__.py,sha256=BogNdBkXhgg05E8_IumNkVoag6WwvfbpiI8346oOtPo,3844
|
3
3
|
dv_flow/mgr/cond_def.py,sha256=2ZkzPusqVkN1fFMTvkDl9O_OJLPdD_cK3xzX9J75RMw,343
|
4
4
|
dv_flow/mgr/config.py,sha256=b2MVlVVNB0psk8x4bQRAYshkpNJrtyMtV1Ymhmx9AfM,137
|
@@ -36,9 +36,9 @@ dv_flow/mgr/task.py,sha256=XQ-mVyDGvpU4gB6GmnNeTQhxKqFXiblShh7qd_-SIbM,2387
|
|
36
36
|
dv_flow/mgr/task_data.py,sha256=lN7Iq8YTitEMGG4rZqYQi6Ri2HuPgBQ5oGQbW-63T8c,12436
|
37
37
|
dv_flow/mgr/task_def.py,sha256=lhiOL7E_TfW7Ytg5qipE6d2cqTkfVqAOs1MZgtCqeLg,5257
|
38
38
|
dv_flow/mgr/task_gen_ctxt.py,sha256=1QQqqgaCjJSlzTV0SASpTb69vINFrDq3aqjYCKUkx3s,846
|
39
|
-
dv_flow/mgr/task_graph_builder.py,sha256=
|
39
|
+
dv_flow/mgr/task_graph_builder.py,sha256=7rg9Vj3aRdaNQymrZpGRLCBUkdaMq80lMikbWxnUaIk,33429
|
40
40
|
dv_flow/mgr/task_graph_dot_writer.py,sha256=qK4Imy9o2_F1aKoU1tJ-qoBHslq2BhSMbdjAUPfpN7I,6009
|
41
|
-
dv_flow/mgr/task_listener_log.py,sha256=
|
41
|
+
dv_flow/mgr/task_listener_log.py,sha256=XcmBT-946DyrEYwNwbg7ejnB6Q3koybE7AekSWGxNGQ,4774
|
42
42
|
dv_flow/mgr/task_listener_trace.py,sha256=7B-V2YK8uXd_QSGBq_7USmbe5CleVvwumU0CpsmxZvg,6224
|
43
43
|
dv_flow/mgr/task_node.py,sha256=OC3rkeRSFv9wmgkMZ_7eJu7nuXGJcwW_b6FGQM-w7AU,5231
|
44
44
|
dv_flow/mgr/task_node_compound.py,sha256=0biBPT_2SpCPJL7DFaFY27_K7kNxJ1taIut3Fv12HXk,3347
|
@@ -76,9 +76,9 @@ dv_flow/mgr/util/util.py,sha256=BO7iqP_c9ttmXkojq7nKDN-g8wl1_Pco9k-KnrXxjwE,1889
|
|
76
76
|
dv_flow/mgr/util/cmds/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
77
|
dv_flow/mgr/util/cmds/cmd_schema.py,sha256=IJzZdxCSEgIQ79LpYiM7UqJ9RJ-7yraqmBN2XVgAgXA,1752
|
78
78
|
dv_flow/mgr/util/cmds/cmd_workspace.py,sha256=egmaIXpe5L-TePwmcfisfrG6tdiTUWSjqa9Za5WChVs,890
|
79
|
-
dv_flow_mgr-1.9.
|
80
|
-
dv_flow_mgr-1.9.
|
81
|
-
dv_flow_mgr-1.9.
|
82
|
-
dv_flow_mgr-1.9.
|
83
|
-
dv_flow_mgr-1.9.
|
84
|
-
dv_flow_mgr-1.9.
|
79
|
+
dv_flow_mgr-1.9.15008554401rc0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
80
|
+
dv_flow_mgr-1.9.15008554401rc0.dist-info/METADATA,sha256=YCyrhzIrlkcKsaok8nRDRT2kUhH2x5pHrzGVTvKYlwE,13335
|
81
|
+
dv_flow_mgr-1.9.15008554401rc0.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
82
|
+
dv_flow_mgr-1.9.15008554401rc0.dist-info/entry_points.txt,sha256=1roy8wAFM48LabOvr6jiOw0MUs-qE8X3Vf8YykPazxk,50
|
83
|
+
dv_flow_mgr-1.9.15008554401rc0.dist-info/top_level.txt,sha256=amfVTkggzYPtWwLqNmRukfz1Buu0pGS2SrYBBLhXm04,8
|
84
|
+
dv_flow_mgr-1.9.15008554401rc0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
{dv_flow_mgr-1.9.14984445659rc0.dist-info → dv_flow_mgr-1.9.15008554401rc0.dist-info}/top_level.txt
RENAMED
File without changes
|