Skip to content

Commit

Permalink
Merge pull request #13096 from amirv/new_connect_arg
Browse files Browse the repository at this point in the history
msg/RDMA: Fix broken compilation due to new argument in net.connect()

Reviewed-by: Haomai Wang <haomai@xsky.com>
  • Loading branch information
yuyuyu101 committed Jan 25, 2017
2 parents 9080596 + a579329 commit 2e6ba82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/msg/async/rdma/RDMAConnectedSocketImpl.cc
Expand Up @@ -164,7 +164,7 @@ int RDMAConnectedSocketImpl::try_connect(const entity_addr_t& peer_addr, const S
ldout(cct, 20) << __func__ << " nonblock:" << opts.nonblock << ", nodelay:"
<< opts.nodelay << ", rbuf_size: " << opts.rcbuf_size << dendl;
NetHandler net(cct);
tcp_fd = net.connect(peer_addr);
tcp_fd = net.connect(peer_addr, opts.connect_bind_addr);

if (tcp_fd < 0) {
return -errno;
Expand Down

0 comments on commit 2e6ba82

Please sign in to comment.