Skip to content
Snippets Groups Projects
Commit 618e42b2 authored by David Douard's avatar David Douard
Browse files

Update to swh.core 3.6

parent 45355112
No related branches found
No related tags found
1 merge request!1144Update to swh.core 3.6 and better tests for masking and blocking proxies
swh.core[db,http] >= 3.0.0
swh.core[db,http] >= 3.6.1
swh.counters >= v0.8.0
swh.model >= 6.14.0
swh.objstorage >= 2.2.0
......@@ -6,8 +6,6 @@
from typing import TYPE_CHECKING, Any, Dict, List
import warnings
from backports.entry_points_selectable import entry_points as get_entry_points
if TYPE_CHECKING:
from .interface import StorageInterface
......@@ -38,6 +36,8 @@ def get_storage(cls: str, **kwargs) -> "StorageInterface":
ValueError if passed an unknown storage class.
"""
from swh.core.config import get_swh_backend_module
if "args" in kwargs:
warnings.warn(
'Explicit "args" key is deprecated, use keys directly instead.',
......@@ -54,16 +54,8 @@ def get_storage(cls: str, **kwargs) -> "StorageInterface":
DeprecationWarning,
)
entry_points = get_entry_points(group="swh.storage.classes")
try:
entry_point = entry_points[cls]
except KeyError:
raise ValueError(
"Unknown storage class `%s`. Supported: %s"
% (cls, ", ".join(entry_point.name for entry_point in entry_points))
) from None
Storage = entry_point.load()
_, Storage = get_swh_backend_module("storage", cls)
assert Storage is not None
check_config = kwargs.pop("check_config", {})
storage = Storage(**kwargs)
if check_config:
......@@ -72,9 +64,6 @@ def get_storage(cls: str, **kwargs) -> "StorageInterface":
return storage
get_datastore = get_storage
def get_storage_pipeline(
steps: List[Dict[str, Any]], check_config=None
) -> "StorageInterface":
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment