| When we restore `DefaultElasticsearchSchemaDropper` and relatives, remember to use the method `DropIndexWorkBuilder::ignoreIndexNotFound` to ignore the exception, instead of using a try / catch block. Here'is an example : > ElasticsearchWork<?> dropWork = workBuilderFactory.dropIndex( indexName ).ignoreIndexNotFound().build(); > orchestrator.submit( dropWork ); |