Fixed BLUR-196
Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/9991a8bd Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/9991a8bd Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/9991a8bd Branch: refs/heads/0.2.0-newtypesystem Commit: 9991a8bdd24ba29581ffe1109f7fd9e43fe65c47 Parents: 9073d5a Author: Aaron McCurry <[email protected]> Authored: Tue Aug 6 15:14:46 2013 -0400 Committer: Aaron McCurry <[email protected]> Committed: Tue Aug 6 15:14:46 2013 -0400 ---------------------------------------------------------------------- blur-thrift/src/main/java/org/apache/blur/thrift/Connection.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/9991a8bd/blur-thrift/src/main/java/org/apache/blur/thrift/Connection.java ---------------------------------------------------------------------- diff --git a/blur-thrift/src/main/java/org/apache/blur/thrift/Connection.java b/blur-thrift/src/main/java/org/apache/blur/thrift/Connection.java index e9ce24b..7290e39 100644 --- a/blur-thrift/src/main/java/org/apache/blur/thrift/Connection.java +++ b/blur-thrift/src/main/java/org/apache/blur/thrift/Connection.java @@ -34,6 +34,7 @@ public class Connection { int indexOfProxyPort = connectionStr.indexOf(':', slashIndex); _proxyHost = connectionStr.substring(slashIndex + 1, indexOfProxyPort); _proxyPort = Integer.parseInt(connectionStr.substring(indexOfProxyPort + 1)); + _proxy = true; } else { _host = connectionStr.substring(0, index); _port = Integer.parseInt(connectionStr.substring(index + 1));
