| Index: blimp/net/engine_connection_manager.cc
|
| diff --git a/blimp/net/engine_connection_manager.cc b/blimp/net/engine_connection_manager.cc
|
| index 11ab02a85a5be2522aee67824ced7172000606ae..d4f16b1b092eda621b58880a4291a71ce20f9cad 100644
|
| --- a/blimp/net/engine_connection_manager.cc
|
| +++ b/blimp/net/engine_connection_manager.cc
|
| @@ -54,7 +54,8 @@ void EngineConnectionManager::Connect() {
|
| }
|
|
|
| void EngineConnectionManager::OnConnectResult(int result) {
|
| - CHECK_EQ(net::OK, result) << "Transport failure:" << transport_->GetName();
|
| + // Transport failure.
|
| + CHECK_EQ(net::OK, result);
|
| connection_handler_->HandleConnection(transport_->MakeConnection());
|
| Connect();
|
| }
|
|
|