elasticjob-cloud/elasticjob-cloud-scheduler/src/main/java/org/apache/shardingsphere/elasticjob/cloud/scheduler/util/HttpClientUtils.java [70:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            String response;
            if (HttpURLConnection.HTTP_OK == connection.getResponseCode()) {
                response = IOUtils.toString(connection.getInputStream(), encoding);
            } else {
                response = IOUtils.toString(connection.getErrorStream(), encoding);
            }
            return new HttpResult(connection.getResponseCode(), response);
        } catch (final IOException ex) {
            throw new HttpClientException(ex);
        } finally {
            if (null != connection) {
                connection.disconnect();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



elasticjob-cloud/elasticjob-cloud-scheduler/src/main/java/org/apache/shardingsphere/elasticjob/cloud/scheduler/util/HttpClientUtils.java [130:141]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            String response;
            if (HttpURLConnection.HTTP_OK == connection.getResponseCode()) {
                response = IOUtils.toString(connection.getInputStream(), encoding);
            } else {
                response = IOUtils.toString(connection.getErrorStream(), encoding);
            }
            return new HttpResult(connection.getResponseCode(), response);
        } catch (final IOException ex) {
            throw new HttpClientException(ex);
        } finally {
            if (null != connection) {
                connection.disconnect();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



