Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-storage
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-storage
Commits
618e42b2
Commit
618e42b2
authored
5 months ago
by
David Douard
Browse files
Options
Downloads
Patches
Plain Diff
Update to swh.core 3.6
parent
45355112
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1144
Update to swh.core 3.6 and better tests for masking and blocking proxies
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
requirements-swh.txt
+1
-1
1 addition, 1 deletion
requirements-swh.txt
swh/storage/__init__.py
+4
-15
4 additions, 15 deletions
swh/storage/__init__.py
with
5 additions
and
16 deletions
requirements-swh.txt
+
1
−
1
View file @
618e42b2
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
This diff is collapsed.
Click to expand it.
swh/storage/__init__.py
+
4
−
15
View file @
618e42b2
...
...
@@ -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
"
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment