uReplicator-Common/src/main/java/com/uber/stream/kafka/mirrormaker/common/utils/HttpClientUtils.java [86:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      final RequestConfig requestConfig,
      final String host,
      final int port,
      final String path,
      final String src,
      final String dst,
      final int routeId) throws IOException, URISyntaxException {
    URI uri = new URIBuilder()
        .setScheme("http")
        .setHost(host)
        .setPort(port)
        .setPath(path)
        .addParameter("src", src)
        .addParameter("dst", dst)
        .addParameter("routeid", String.valueOf(routeId))
        .build();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



uReplicator-Common/src/main/java/com/uber/stream/kafka/mirrormaker/common/utils/HttpClientUtils.java [151:166]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      final RequestConfig requestConfig,
      final String host,
      final int port,
      final String path,
      final String src,
      final String dst,
      final int routeId) throws IOException, URISyntaxException {
    URI uri = new URIBuilder()
        .setScheme("http")
        .setHost(host)
        .setPort(port)
        .setPath(path)
        .addParameter("src", src)
        .addParameter("dst", dst)
        .addParameter("routeid", String.valueOf(routeId))
        .build();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



