Fix delivery of PEX root tmp dirs
1 unresolved thread
1 unresolved thread
-
HeuristicProductFinder
in delivery now no longer considers PEX root tmpdirs as products to deliver
Merge request reports
Activity
added 9 commits
-
cead828f...1c5ef9bf - 8 commits from branch
main
- e2f4228e - `HeuristicProductFinder` in delivery now no longer considers PEX root
-
cead828f...1c5ef9bf - 8 commits from branch
44 44 Identify the product type and the number of products and returns them as a list 45 45 46 46 :return: List of products 47 TODO: Search for a `products` directory to identify calibration products; I think that's good enough for now 48 to tell EBs from calibrations and once we get more products needing to be delivered we can expand from there 49 47 """ 50 48 for subdir in self.path.glob("*"): 51 if subdir.is_dir(): 49 if subdir.is_dir() and not subdir.name.startswith("tmp"):
Please register or sign in to reply