diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-06-14 10:44:41 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-06-14 10:44:41 -0230 |
commit | 9384d90d200a46c26a22135d4f4e39be78d04ab0 (patch) | |
tree | 301242e7633043ec9225e2732a81037f438da9c4 /cpp/src/Ice/ObjectAdapterI.cpp | |
parent | Fixed bug 2254 (diff) | |
download | ice-9384d90d200a46c26a22135d4f4e39be78d04ab0.tar.bz2 ice-9384d90d200a46c26a22135d4f4e39be78d04ab0.tar.xz ice-9384d90d200a46c26a22135d4f4e39be78d04ab0.zip |
No longer necessary to expand enpoints in proxies, use same mechanism as for multihomed hosts.
Added some missing .gitignore files.
Diffstat (limited to 'cpp/src/Ice/ObjectAdapterI.cpp')
-rw-r--r-- | cpp/src/Ice/ObjectAdapterI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.cpp b/cpp/src/Ice/ObjectAdapterI.cpp index e13c958935f..0a7ac99d39a 100644 --- a/cpp/src/Ice/ObjectAdapterI.cpp +++ b/cpp/src/Ice/ObjectAdapterI.cpp @@ -1147,7 +1147,7 @@ ObjectAdapterI::parsePublishedEndpoints() vector<EndpointIPtr> expandedEndpoints; for(unsigned int i = 0; i < endpoints.size(); ++i) { - vector<EndpointIPtr> endps = endpoints[i]->expand(false); + vector<EndpointIPtr> endps = endpoints[i]->expand(); expandedEndpoints.insert(expandedEndpoints.end(), endps.begin(), endps.end()); } return expandedEndpoints; |