ozhera-webhook/ozhera-webhook-server/src/main/java/org/apache/ozhera/webhook/common/HttpClientUtil.java [107:126]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static void closeResponse(HttpUriRequest hur, CloseableHttpResponse chr, long startTime) {
        String url = "http://aaaa.com";
        int stateCode = -1;
        long endTime = System.currentTimeMillis();
        long useTime = endTime - startTime;
        try {

            if (null != hur) {
                url = hur.getURI().getPath();
            }

            if (null != chr) {
                stateCode = chr.getStatusLine().getStatusCode();
                chr.close();
            }
        } catch (Exception e) {

        }

    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ozhera-operator/ozhera-operator-common/src/main/java/org/apache/ozhera/operator/common/HttpClientUtil.java [103:122]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	public static void closeResponse(HttpUriRequest hur, CloseableHttpResponse chr, long startTime) {
		String url = "http://aaaa.com";
		int stateCode = -1;
		long endTime = System.currentTimeMillis();
		long useTime = endTime - startTime;
		try {

			if (null != hur) {
				url = hur.getURI().getPath();
			}

			if (null != chr) {
				stateCode = chr.getStatusLine().getStatusCode();
				chr.close();
			}
		} catch (Exception e) {

		}

	}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



