This commit is contained in:
Marty Kraimer
2012-08-17 06:46:31 -04:00
parent ef3d829527
commit 99d55ef56b
9 changed files with 65 additions and 65 deletions

View File

@@ -539,7 +539,7 @@ class ChannelGetRequesterImpl : public ChannelGetRequester
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << m_channelName << "] channel get create: " << status.toString() << std::endl;
}
@@ -565,7 +565,7 @@ class ChannelGetRequesterImpl : public ChannelGetRequester
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << m_channelName << "] channel get: " << status.toString() << std::endl;
}
@@ -639,7 +639,7 @@ class ChannelRPCRequesterImpl : public ChannelRPCRequester
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << m_channelName << "] channel RPC create: " << status.toString() << std::endl;
}
@@ -663,7 +663,7 @@ class ChannelRPCRequesterImpl : public ChannelRPCRequester
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << m_channelName << "] channel RPC: " << status.toString() << std::endl;
}
@@ -742,7 +742,7 @@ public:
if (status.isSuccess())
{
// show warning
if (!status.isOk())
if (!status.isOK())
{
std::cout << "[" << channel->getChannelName() << "] channel create: " << status.toString() << std::endl;
}