Switch to stateless rather than stateful for flag

This commit is contained in:
James Page 2015-09-10 10:34:26 +01:00
parent ecba1f60e1
commit 227abac9b5
2 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ def storage_backend(rel_id=None):
relation_id=rel_id,
backend_name=service_name(),
subordinate_configuration=json.dumps(CephSubordinateContext()()),
stateful=False,
stateless=True,
)

View File

@ -137,5 +137,5 @@ class TestCinderHooks(CharmTestCase):
relation_id=None,
backend_name='test',
subordinate_configuration=json.dumps({'test': 1}),
stateful=False,
stateless=True,
)