MDL-53271 search: Catch Solr Server errors when adding doc

This commit is contained in:
Eric Merrill 2016-02-28 13:40:25 -05:00
parent 03b8b55f10
commit 63d5007b77

View file

@ -309,6 +309,10 @@ class engine extends \core_search\engine {
$result = $this->get_search_client()->addDocument($solrdoc, true, static::AUTOCOMMIT_WITHIN);
} catch (\SolrClientException $e) {
debugging('Solr client error adding document with id ' . $doc['id'] . ': ' . $e->getMessage(), DEBUG_DEVELOPER);
} catch (\SolrServerException $e) {
// We only use the first line of the message, as it's a fully java stacktrace behind it.
$msg = strtok($e->getMessage(), "\n");
debugging('Solr server error adding document with id ' . $doc['id'] . ': ' . $msg, DEBUG_DEVELOPER);
}
}