summaryrefslogtreecommitdiff
path: root/glance_store/backend.py
diff options
context:
space:
mode:
authorLouis Taylor <louis@kragniz.eu>2015-05-14 11:50:03 +0100
committerLouis Taylor <louis@kragniz.eu>2015-05-15 18:55:05 +0100
commit752f9cabd202d3f228da843d86324c4f75a942a3 (patch)
tree9c9b49428cb67d5cac376ce303c10b553a4d5361 /glance_store/backend.py
parent56c9486800a371e853056a3badd6eb11c2f88ad9 (diff)
downloadglance_store-752f9cabd202d3f228da843d86324c4f75a942a3.tar.gz
Disable propagating BadStoreConfiguration
Commit I1d4f95cba47d21f1eb7e580314d01ac8d3481586 propergates BadStoreConfiguration to the consumer of glance_store. This breaks backwards compatibility for existing glance installations, however. This patch disables it for the time being. Change-Id: I46e1e38bf0b3ba9f78b4e553178b49bee929e0fd
Diffstat (limited to 'glance_store/backend.py')
-rw-r--r--glance_store/backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/glance_store/backend.py b/glance_store/backend.py
index c7f7b57..916b3d7 100644
--- a/glance_store/backend.py
+++ b/glance_store/backend.py
@@ -183,7 +183,7 @@ def create_stores(conf=CONF):
for (store_entry, store_instance) in _load_stores(conf):
try:
schemes = store_instance.get_schemes()
- store_instance.configure(re_raise_bsc=True)
+ store_instance.configure(re_raise_bsc=False)
except NotImplementedError:
continue
if not schemes: