Skip to content

Commit

Permalink
Merge pull request eBay#10 from ClickHouse-Extras/enable_ipv6
Browse files Browse the repository at this point in the history
Enable ipv6 in NuRaft
  • Loading branch information
alesapin committed Mar 10, 2021
2 parents ff9049b + b1d87a6 commit 3d3683e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asio_service.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ class asio_rpc_listener
, io_svc_(io)
, ssl_ctx_(ssl_ctx)
, handler_()
, acceptor_(io, asio::ip::tcp::endpoint(asio::ip::tcp::v4(), port))
, acceptor_(io, asio::ip::tcp::endpoint(asio::ip::tcp::v6(), port))
, session_id_cnt_(1)
, stopped_(false)
, ssl_enabled_(_enable_ssl)
Expand Down

0 comments on commit 3d3683e

Please sign in to comment.