From 8f87cec771c4607294cdde83d962f823390b9bba Mon Sep 17 00:00:00 2001 From: Greg Pauloski <18683347+gpauloski@users.noreply.github.com> Date: Mon, 15 Dec 2025 17:48:35 -0800 Subject: [PATCH] Remove app_cache from Parsl config --- taps/executor/parsl.py | 4 ---- tests/executor/parsl_test.py | 1 - 2 files changed, 5 deletions(-) diff --git a/taps/executor/parsl.py b/taps/executor/parsl.py index 059085e..2c54424 100644 --- a/taps/executor/parsl.py +++ b/taps/executor/parsl.py @@ -95,10 +95,6 @@ class ParslHTExConfig(TapsExecutorConfig): htex: HTExConfig | dict[str, HTExConfig] = Field( description='HTEx configuration.', ) - app_cache: bool | None = Field( - None, - description='Enable app caching.', - ) retries: int = Field( 0, description='Number of task retries in case of task failure.', diff --git a/tests/executor/parsl_test.py b/tests/executor/parsl_test.py index 3fbcad5..58d8442 100644 --- a/tests/executor/parsl_test.py +++ b/tests/executor/parsl_test.py @@ -73,7 +73,6 @@ def test_get_htex_executor(tmp_path: pathlib.Path, mock_monitoring) -> None: config = ParslHTExConfig( htex=htex_config, - app_cache=False, retries=1, run_dir=str(tmp_path / 'parsl'), monitoring=MonitoringConfig(