Skip to content

Commit 75c503e

Browse files
authored
Merge pull request #17 from den-sq/main
Minor Process Cap - Next go round should pull out the issues causing the test failures.
2 parents 8245634 + 8599f12 commit 75c503e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pr-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v4
2222
with:
23-
ref: ${{ github.event.pull_request.merge_commit_sha }}
23+
ref: ${{ github.ref }}
2424
fetch-depth: 0
2525

2626
- name: Bump version and push tag

python/ouroboros/pipeline/backproject_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(self, processes=multiprocessing.cpu_count()) -> None:
5353
)
5454
)
5555

56-
self.num_processes = max(processes, 4)
56+
self.num_processes = min(processes, 4)
5757

5858
def _process(self, input_data: any) -> tuple[any, None] | tuple[None, any]:
5959
config, volume_cache, slice_rects, pipeline_input = input_data

0 commit comments

Comments
 (0)