summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/Database.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2006-06-20 11:35:46 +0000
committerBenoit Foucher <benoit@zeroc.com>2006-06-20 11:35:46 +0000
commit8703d6ae3999f4bf7108647899a50bd4966f625e (patch)
tree0f83fd241d6481a27ac725947e231cbaf9d52af6 /cpp/src/IceGrid/Database.cpp
parentFix for bug 1100 (diff)
downloadice-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.cpp2
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);
}
}