change the dangling indices deleting timeout default value to 2h

This commit is contained in:
Shay Banon 2012-03-16 17:53:02 +02:00
parent 051e6a02a7
commit 42541f7354
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public class IndicesStore extends AbstractComponent implements ClusterStateListe
this.clusterService = clusterService;
this.threadPool = threadPool;
this.danglingTimeout = componentSettings.getAsTime("dangling_timeout", TimeValue.timeValueMinutes(2));
this.danglingTimeout = componentSettings.getAsTime("dangling_timeout", TimeValue.timeValueHours(2));
clusterService.addLast(this);
}