From 68c08d8ea5da5b514134d831771eee2465f1c9f4 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 28 May 2026 13:32:05 +0100 Subject: [PATCH 1/2] reduce max threads to 30 --- activestorage/active.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activestorage/active.py b/activestorage/active.py index 1779fbe3..9fc84367 100644 --- a/activestorage/active.py +++ b/activestorage/active.py @@ -189,7 +189,7 @@ def __init__(self, ncvar: str = None, axis: tuple = None, interface_type: str = None, - max_threads: int = 100, + max_threads: int = 30, # optimal for not too finely chunked data storage_options: dict = None, active_storage_url: str = None, option_disable_chunk_cache: bool = False) -> None: From 4bb439ff6cd51642ad7b4329254f019672119fe5 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Thu, 28 May 2026 13:36:05 +0100 Subject: [PATCH 2/2] run GHA --- .github/workflows/run-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 7a804b28..a62605d8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -4,6 +4,7 @@ on: push: branches: - main + - reduce_maxthreads_2 schedule: - cron: '0 0 * * *' # nightly