Yaliang commented on a change in pull request #2847: Replace CHECK() with 
CHECK_*() so that when a check is failing, more …
URL: https://github.com/apache/incubator-heron/pull/2847#discussion_r179630042
 
 

 ##########
 File path: heron/stmgr/src/cpp/manager/stmgr-server.cpp
 ##########
 @@ -175,7 +176,8 @@ void 
StMgrServer::HandleStartBackPressureMessage(Connection* _conn,
     return;
   }
   auto iter = rstmgrs_.find(_conn);
-  CHECK(iter != rstmgrs_.end());
+  CHECK(iter != rstmgrs_.end())
+      << "Connection " << _conn << " is not found in remote stmgr list when 
starting backpressure";
 
 Review comment:
   Not sure how `_conn` will be the serialized

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to