diff options
Diffstat (limited to 'cpp/src/IceGrid/ServerCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/ServerCache.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/ServerCache.cpp b/cpp/src/IceGrid/ServerCache.cpp index 90a1428c078..9a8c547138a 100644 --- a/cpp/src/IceGrid/ServerCache.cpp +++ b/cpp/src/IceGrid/ServerCache.cpp @@ -417,7 +417,9 @@ ServerEntry::getAdminProxy() // // The category must match the server admin category used by nodes // - Ice::Identity adminId = {_id, _cache.getInstanceName() + "-NodeRouter" }; + Ice::Identity adminId; + adminId.name = _id; + adminId.category = _cache.getInstanceName() + "-NodeRouter"; // TODO: what's this upToDate parameter about?? |