Skip to content

Commit

Permalink
Implement a boto3 object store.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed May 8, 2024
1 parent a1e404a commit 7f16fa5
Show file tree
Hide file tree
Showing 4 changed files with 477 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/galaxy/objectstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,6 +1505,10 @@ def type_to_object_store_class(
objectstore_constructor_kwds: Dict[str, Any] = {}
if store == "disk":
objectstore_class = DiskObjectStore
elif store == "boto3":
from .s3_boto3 import S3ObjectStore

objectstore_class = S3ObjectStore
elif store in ["s3", "aws_s3"]:
from .s3 import S3ObjectStore

Expand Down
Loading

0 comments on commit 7f16fa5

Please sign in to comment.