diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-11-14 17:20:45 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-11-14 17:20:45 +0000 |
commit | 94837d3b73433306c094f47689dc6f6d9d8bdfdd (patch) | |
tree | 5948eb86aedda879f017af52517f633a056cbe1e /cpp/src/Ice/ReferenceFactory.cpp | |
parent | Added findAllReplicas to IceGrid::Query interface (diff) | |
download | ice-94837d3b73433306c094f47689dc6f6d9d8bdfdd.tar.bz2 ice-94837d3b73433306c094f47689dc6f6d9d8bdfdd.tar.xz ice-94837d3b73433306c094f47689dc6f6d9d8bdfdd.zip |
No -h in client-side endpoint means use loopback
Diffstat (limited to 'cpp/src/Ice/ReferenceFactory.cpp')
-rw-r--r-- | cpp/src/Ice/ReferenceFactory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ReferenceFactory.cpp b/cpp/src/Ice/ReferenceFactory.cpp index 83b75d626de..6b720ec6321 100644 --- a/cpp/src/Ice/ReferenceFactory.cpp +++ b/cpp/src/Ice/ReferenceFactory.cpp @@ -445,7 +445,7 @@ IceInternal::ReferenceFactory::create(const string& str) EndpointIPtr endp = _instance->endpointFactoryManager()->create(es); if(endp != 0) { - vector<EndpointIPtr> endps = endp->expand(); + vector<EndpointIPtr> endps = endp->expand(false); endpoints.insert(endpoints.end(), endps.begin(), endps.end()); } else |