Revert "Allow IPv6 for Livebook Teams"

This reverts commit 935e484580.
This commit is contained in:
Alexandre de Souza 2024-07-03 17:53:00 -03:00
parent 935e484580
commit 7f1c5f18c5
No known key found for this signature in database
GPG key ID: E39228FFBA346545
2 changed files with 1 additions and 2 deletions

View file

@ -267,7 +267,6 @@ defmodule Livebook.Teams.Requests do
defp build_req() do
Req.new(
base_url: Livebook.Config.teams_url(),
inet6: true,
headers: [{"x-lb-version", Livebook.Config.app_version()}]
)
end

View file

@ -26,7 +26,7 @@ defmodule Livebook.Teams.WebSocket do
if http_scheme == :https do
[cacerts: :public_key.cacerts_get()]
else
[inet6: true]
[]
end
opts = [protocols: [:http1], transport_opts: transport_opts]