Skip to content

Commit

Permalink
change default to 3 max workers
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie committed Dec 2, 2024
1 parent 4c9ea1b commit 35b9db9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/disp_s1/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ def create_products(
los_north_file=los_north_file,
near_far_incidence_angles=near_far_incidence_angles,
water_mask=matching_water_binary_mask,
max_workers=3,
)
logger.info("Finished creating output products.")

Expand Down Expand Up @@ -440,7 +441,7 @@ def create_displacement_products(
los_north_file: Path | None = None,
near_far_incidence_angles: tuple[float, float] = (30.0, 45.0),
water_mask: Path | None = None,
max_workers: int = 4,
max_workers: int = 3,
) -> None:
"""Run parallel processing for all interferograms.
Expand Down

0 comments on commit 35b9db9

Please sign in to comment.