change default value for number of replicas

The default value for the elasticsearch number of replicas is set to 1

Change-Id: I36fdfd0cc158be3dfd20b29fa0739bc849af40d0
This commit is contained in:
Fabrizio Vanni 2015-11-26 17:37:29 +00:00
parent a6a00e5b51
commit 8428c2d0d9
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ from freezer_api.common import db_mappings
DEFAULT_CONF_PATH = '/etc/freezer-api.conf'
DEFAULT_ES_SERVER_PORT = 9200
DEFAULT_INDEX = 'freezer'
DEFAULT_REPLICAS = 2
DEFAULT_REPLICAS = 1
class MergeMappingException(Exception):