pivotal-jbarrett commented on a change in pull request #800:
URL: https://github.com/apache/geode-native/pull/800#discussion_r625129556
##########
File path: cppcache/src/ClientMetadataService.cpp
##########
@@ -121,6 +121,14 @@ void ClientMetadataService::getClientPRMetadata(const
char* regionFullPath) {
if (err == GF_NOERR &&
reply.getMessageType() ==
TcrMessage::RESPONSE_CLIENT_PARTITION_ATTRIBUTES) {
+ // By convention, server returns -1 bucket count to indicate replicated
+ // region
+ if (reply.getNumBuckets() == -1) {
+ LOGDEBUG(
Review comment:
I am not sure this is worth logging. Knowing this information is
unlikely to help us debug anything.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]