Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 5bad884

Browse files
author
Mangled Deutz
committed
Fix #401
Docker-DCO-1.1-Signed-off-by: Mangled Deutz <[email protected]> (github: dmp42)
1 parent 4c83f82 commit 5bad884

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docker_registry/storage/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ def load(kind=None):
3333
if kind in _storage:
3434
return _storage[kind]
3535

36-
_storage[kind] = engine.fetch(kind)(None, config=cfg)
36+
_storage[kind] = engine.fetch(kind)(
37+
path=cfg.get('storage_path'),
38+
config=cfg)
3739

3840
return _storage[kind]

0 commit comments

Comments
 (0)