Commit 8f82d8ea authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

Fix : Erreur Elastic lors d'un rebuild d'index vide

parent ce8bca70
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -282,7 +282,7 @@ abstract class ElasticSearchEngine
        try {
            return $client->indices()->delete($params);
        } catch (\Exception $e) {
            throw ElasticSearchEngineException::getInstance($e->getMessage());
            throw ElasticSearchEngineException::getInstance($e);
        }
    }