Skip to content
Snippets Groups Projects

Fix delivery of PEX root tmp dirs

Merged Nathan Hertz requested to merge no-deliver-pex-root-tmpdirs into main
1 unresolved thread
  • HeuristicProductFinder in delivery now no longer considers PEX root tmpdirs as products to deliver

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
Loading