remove enable_persistency from configuration.

Persistency wont be optional.
This parameter was not used so far thus is simply removed, without deprecating it.

Change-Id: I44baad84429c552b87364fa6659ca2ee193bef58
This commit is contained in:
Idan Hefetz
2018-07-25 08:01:40 +00:00
parent 1db154a043
commit 09a7f43927
6 changed files with 4 additions and 30 deletions

View File

@@ -17,9 +17,5 @@ from oslo_config import cfg
OPTS = [
cfg.StrOpt('persistor_topic',
default='vitrage_persistor',
help='The topic on which event will be sent from the '
'datasources to the persistor'),
cfg.BoolOpt('enable_persistency',
default=False,
help='Periodically store entity graph snapshot to database'),
help='persistor will listen on this topic for events to store'),
]