From 6bc88d53ae11595a49b9d19543bf87dd57b0c894 Mon Sep 17 00:00:00 2001 From: Brett Date: Mon, 11 Mar 2024 15:49:17 -0400 Subject: [PATCH] remove global multiprocessing.set_start_method --- jwst/jump/jump_step.py | 3 --- jwst/ramp_fitting/ramp_fit_step.py | 2 -- 2 files changed, 5 deletions(-) diff --git a/jwst/jump/jump_step.py b/jwst/jump/jump_step.py index 7e95f46383e..8670a44d317 100755 --- a/jwst/jump/jump_step.py +++ b/jwst/jump/jump_step.py @@ -4,12 +4,9 @@ from ..stpipe import Step from .jump import run_detect_jumps import time -import multiprocessing __all__ = ["JumpStep"] -multiprocessing.set_start_method('forkserver', force=True) - class JumpStep(Step): """ diff --git a/jwst/ramp_fitting/ramp_fit_step.py b/jwst/ramp_fitting/ramp_fit_step.py index 4bfe500ef2f..aa39d1e86d6 100644 --- a/jwst/ramp_fitting/ramp_fit_step.py +++ b/jwst/ramp_fitting/ramp_fit_step.py @@ -18,12 +18,10 @@ import logging import copy import warnings -import multiprocessing log = logging.getLogger(__name__) log.setLevel(logging.DEBUG) -multiprocessing.set_start_method('forkserver', force=True) __all__ = ["RampFitStep"]