Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- reduce_maxthreads_2
Comment thread
valeriupredoi marked this conversation as resolved.
Outdated
schedule:
- cron: '0 0 * * *' # nightly

Expand Down
2 changes: 1 addition & 1 deletion activestorage/active.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading