diff options
Diffstat (limited to 'shardweb/lib/shard_web')
-rw-r--r-- | shardweb/lib/shard_web/controllers/page_controller.ex | 2 | ||||
-rw-r--r-- | shardweb/lib/shard_web/templates/page/index.html.eex | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shardweb/lib/shard_web/controllers/page_controller.ex b/shardweb/lib/shard_web/controllers/page_controller.ex index 305e751..620d779 100644 --- a/shardweb/lib/shard_web/controllers/page_controller.ex +++ b/shardweb/lib/shard_web/controllers/page_controller.ex @@ -18,7 +18,7 @@ defmodule ShardWeb.PageController do end end {port_num, _} = Integer.parse port - Shard.Manager.add_peer(ip_tuple, port_num) + Shard.Manager.add_peer({:inet, ip_tuple, port_num}) rescue _ -> nil end diff --git a/shardweb/lib/shard_web/templates/page/index.html.eex b/shardweb/lib/shard_web/templates/page/index.html.eex index efa651b..34441e5 100644 --- a/shardweb/lib/shard_web/templates/page/index.html.eex +++ b/shardweb/lib/shard_web/templates/page/index.html.eex @@ -6,7 +6,7 @@ <th>Address</th> <th>Port</th> </tr> - <%= for {{:tcp4, ip, port}, pid, auth} <- conn_list() do %> + <%= for {{:inet, ip, port}, pid, auth} <- conn_list() do %> <tr> <td> <%= case auth do %> |