diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-06-20 11:35:46 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-06-20 11:35:46 +0000 |
commit | 8703d6ae3999f4bf7108647899a50bd4966f625e (patch) | |
tree | 0f83fd241d6481a27ac725947e231cbaf9d52af6 /cpp/src/IceGrid/Database.cpp | |
parent | Fix for bug 1100 (diff) | |
download | ice-8703d6ae3999f4bf7108647899a50bd4966f625e.tar.bz2 ice-8703d6ae3999f4bf7108647899a50bd4966f625e.tar.xz ice-8703d6ae3999f4bf7108647899a50bd4966f625e.zip |
Fixed bug 1098
Fixed bug where the identity of well-known object wasn't correctly escaped
when creating the well-known object proxy.
Fixed bug in router stress test (catch ONE)
Diffstat (limited to 'cpp/src/IceGrid/Database.cpp')
-rw-r--r-- | cpp/src/IceGrid/Database.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Database.cpp b/cpp/src/IceGrid/Database.cpp index 4f8c65bcdb0..523d6ec077c 100644 --- a/cpp/src/IceGrid/Database.cpp +++ b/cpp/src/IceGrid/Database.cpp @@ -1259,7 +1259,7 @@ Database::load(const ApplicationHelper& app, ServerEntrySeq& entries) { ObjectInfo info; info.type = o->type; - info.proxy = _communicator->stringToProxy(_communicator->identityToString(o->id) + "@" + r->id); + info.proxy = _communicator->stringToProxy("\"" + _communicator->identityToString(o->id) + "\" @ " + r->id); _objectCache.add(info, application); } } |