aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc')
-rw-r--r--tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc b/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc
index ecd272a5be..729aa36803 100644
--- a/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc
+++ b/tensorflow/core/distributed_runtime/rpc/rpc_rendezvous_mgr.cc
@@ -92,7 +92,7 @@ class RpcRecvTensorCall : public BaseRecvTensorCall {
// RpcRecvTensorCall, and it always sets this->wi_ to null when
// a call object is released to it, we can assert that this->wi_ is
// always null at the point of deletion.
- CHECK_EQ(nullptr, wi_)
+ CHECK_EQ(static_cast<WorkerInterface*>(nullptr), wi_)
<< "Leaking WorkerInterface in RpcRecvTensorCall destructor.";
}