Skip to content
Snippets Groups Projects
Commit e2f4228e authored by Nathan Hertz's avatar Nathan Hertz Committed by Nathan Hertz
Browse files

`HeuristicProductFinder` in delivery now no longer considers PEX root

tmpdirs as products to deliver
parent 1c5ef9bf
No related branches found
Tags 2.8.1 2.8.1-rc3
1 merge request!316Fix delivery of PEX root tmp dirs
Pipeline #2062 failed
......@@ -44,9 +44,7 @@ class HeuristicProductFinder(ProductFinder):
Identify the product type and the number of products and returns them as a list
:return: List of products
TODO: Search for a `products` directory to identify calibration products; I think that's good enough for now
to tell EBs from calibrations and once we get more products needing to be delivered we can expand from there
"""
for subdir in self.path.glob("*"):
if subdir.is_dir():
if subdir.is_dir() and not subdir.name.startswith("tmp"):
yield ExecutionBlock(subdir)
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