aliyun-sdk-opensearch/src/main/java/com/aliyun/opensearch/util/HttpClientFactory.java [265:282]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                } finally {
                    HttpClientUtils.closeQuietly(response);
                }
            }
        } catch (RuntimeException e) {
            // 请求失败
            this.clientTracer.fail();
            throw e;
        } catch (IOException e) {
            // 请求失败
            this.clientTracer.fail();
            throw e;
        }

        // 请求成功
        this.clientTracer.success(response, result);

        StatusLine statusLine = response.getStatusLine();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aliyun-sdk-opensearch/src/main/java/com/aliyun/opensearch/util/HttpClientFactory.java [371:388]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                } finally {
                    HttpClientUtils.closeQuietly(response);
                }
            }
        } catch (RuntimeException e) {
            // 请求失败
            this.clientTracer.fail();
            throw e;
        } catch (IOException e) {
            // 请求失败
            this.clientTracer.fail();
            throw e;
        }

        // 请求成功
        this.clientTracer.success(response, result);

        StatusLine statusLine = response.getStatusLine();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



