Skip to content

Commit

Permalink
Includes check for running with NOTHING rmode when building runtime b…
Browse files Browse the repository at this point in the history
…lockdag.
  • Loading branch information
pritchardn committed Dec 2, 2022
1 parent adeca03 commit b9b41d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions daliuge-common/dlg/common/reproducibility/reproducibility.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,6 +848,9 @@ def init_runtime_repro_data(runtime_graph: dict, reprodata: dict):
# logger.warning("Requested reproducibility mode %s not yet implemented", str(rmode))
level = REPRO_DEFAULT
reprodata["rmode"] = str(level.value)
if level == ReproducibilityFlags.NOTHING:
runtime_graph["reprodata"] = reprodata
return runtime_graph
for drop in runtime_graph.values():
init_rg_repro_drop_data(drop)
candidate_rmodes = []
Expand Down

0 comments on commit b9b41d1

Please sign in to comment.