Skip to content

Commit

Permalink
filter projects for build host (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
bud42 authored Aug 30, 2024
1 parent 5e44579 commit 24d65af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dax/dax_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ def run_rcq_build(self, projects):
yaml_dir = instance_settings['main_processorlib']
with get_interface(host=self.xnat_host) as xnat:
builder = rcq.TaskBuilder(self._rcq, xnat, yaml_dir)
build_projects = builder.build_projects()
build_projects = [x for x in builder.build_projects() if x in projects]
complete_projects = []

# Store the start time for all projects
Expand Down

0 comments on commit 24d65af

Please sign in to comment.