Skip to content
Snippets Groups Projects
Commit 1b95995a authored by Alex Pearce's avatar Alex Pearce
Browse files

Clarify NeverFail logic.

parent 5d0b2b2c
No related branches found
No related tags found
2 merge requests!526Draft: S29r2p2 cache,!246Truth-match objects beyond the standard HLT2 reconstruction in Tesla
......@@ -757,6 +757,10 @@ class Tesla(LHCbConfigurableUser):
DataCopy('Copy{0}'.format(loc.replace('/', '')),
What=loc,
Target=os.path.join(base, loc),
# It's very possible that the extra locations
# might not exist, so no relations table will be
# created; we don't mind the copying failing in
# those cases
NeverFail=True if loc.replace('Relations/', '/Event/') in (extra_track_locs + extra_proto_locs) else False,
OutputLevel=output_level)
for loc in relationsLocations
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment