Skip to content

Commit aa2e313

Browse files
committed
Prefer root_cause reason over the main reason if available
1 parent 8072aee commit aa2e313

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/Elasticsearch/Connections/Connection.php

+11-5
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@
1919
use Elasticsearch\Serializers\SerializerInterface;
2020
use Elasticsearch\Transport;
2121
use GuzzleHttp\Ring\Core;
22-
use GuzzleHttp\Ring\Exception\ConnectException;
23-
use GuzzleHttp\Ring\Exception\RingException;
2422
use Psr\Log\LoggerInterface;
2523

2624
/**
@@ -601,10 +599,18 @@ private function tryDeserializeError($response, $errorClass) {
601599
if (is_array($error) === true) {
602600
// 2.0 structured exceptions
603601
if (isset($error['error']['reason']) === true) {
604-
$original = new $errorClass($response['body'], $response['status']);
605602

606-
$cause = $error['error']['reason'];
607-
$type = $error['error']['type'];
603+
// Try to use root cause first (only grabs the first root cause)
604+
$root = $error['error']['root_cause'];
605+
if (isset($root) && isset($root[0])) {
606+
$cause = $root[0]['reason'];
607+
$type = $root[0]['type'];
608+
} else {
609+
$cause = $error['error']['reason'];
610+
$type = $error['error']['type'];
611+
}
612+
613+
$original = new $errorClass($response['body'], $response['status']);
608614

609615
return new $errorClass("$type: $cause", $response['status'], $original);
610616

0 commit comments

Comments
 (0)