Skip to content

Commit

Permalink
Adding object store plugin for Rucio
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyYakubov committed Dec 8, 2023
1 parent 6b88703 commit 8c2c199
Show file tree
Hide file tree
Showing 5 changed files with 988 additions and 2 deletions.
4 changes: 4 additions & 0 deletions lib/galaxy/objectstore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,6 +1401,10 @@ def type_to_object_store_class(store: str, fsmon: bool = False) -> Tuple[Type[Ba
from .pithos import PithosObjectStore

objectstore_class = PithosObjectStore
elif store == "rucio":
from .rucio import RucioObjectStore

objectstore_class = RucioObjectStore
else:
raise Exception(f"Unrecognized object store definition: {store}")
# Disable the Pulsar object store for now until it receives some attention
Expand Down
Loading

0 comments on commit 8c2c199

Please sign in to comment.