Skip to content

Commit

Permalink
Merge pull request #18520 from jmchilton/fix_cache_size
Browse files Browse the repository at this point in the history
Fix shared caches with extended metadata collection.
  • Loading branch information
mvdbeek authored Jul 17, 2024
2 parents 4de96cc + e2636df commit 76f0690
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/galaxy/model/unittest_utils/data_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def __init__(self, root=None, **kwd):
self.object_store = "disk"
self.object_store_check_old_style = False
self.object_store_cache_path = "/tmp/cache"
self.object_store_cache_size = -1
self.object_store_store_by = "uuid"

self.umask = os.umask(0o77)
Expand Down
1 change: 1 addition & 0 deletions lib/galaxy/objectstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1726,6 +1726,7 @@ def config_to_dict(config):
"jobs_directory": config.jobs_directory,
"new_file_path": config.new_file_path,
"object_store_cache_path": config.object_store_cache_path,
"object_store_cache_size": config.object_store_cache_size,
"gid": config.gid,
}

Expand Down

0 comments on commit 76f0690

Please sign in to comment.