File tree 1 file changed +11
-5
lines changed
src/Elasticsearch/Connections
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 19
19
use Elasticsearch \Serializers \SerializerInterface ;
20
20
use Elasticsearch \Transport ;
21
21
use GuzzleHttp \Ring \Core ;
22
- use GuzzleHttp \Ring \Exception \ConnectException ;
23
- use GuzzleHttp \Ring \Exception \RingException ;
24
22
use Psr \Log \LoggerInterface ;
25
23
26
24
/**
@@ -601,10 +599,18 @@ private function tryDeserializeError($response, $errorClass) {
601
599
if (is_array ($ error ) === true ) {
602
600
// 2.0 structured exceptions
603
601
if (isset ($ error ['error ' ]['reason ' ]) === true ) {
604
- $ original = new $ errorClass ($ response ['body ' ], $ response ['status ' ]);
605
602
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 ' ]);
608
614
609
615
return new $ errorClass ("$ type: $ cause " , $ response ['status ' ], $ original );
610
616
You can’t perform that action at this time.
0 commit comments