summaryrefslogtreecommitdiffstats
path: root/custodia/httpd
diff options
context:
space:
mode:
Diffstat (limited to 'custodia/httpd')
-rw-r--r--custodia/httpd/consumer.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/custodia/httpd/consumer.py b/custodia/httpd/consumer.py
index 1947b29..700c4f8 100644
--- a/custodia/httpd/consumer.py
+++ b/custodia/httpd/consumer.py
@@ -10,6 +10,9 @@ class HTTPConsumer(object):
def __init__(self, config=None):
self.config = config
+ self.store_name = None
+ if config and 'store' in config:
+ self.store_name = config['store']
def handle(self, request):
command = request.get('command', 'GET')