mirror of
https://github.com/edgurgel/httparrot
synced 2025-04-05 08:12:31 -04:00
Do not support unix sockets on windows
This commit is contained in:
parent
cebf7ad9fa
commit
b2e8461af5
1 changed files with 3 additions and 3 deletions
|
@ -89,9 +89,9 @@ defmodule HTTParrot do
|
|||
end
|
||||
end
|
||||
|
||||
defp unix_socket_supported? do
|
||||
case Integer.parse("#{:erlang.system_info(:otp_release)}") do
|
||||
{n, _} when n >= 19 -> true
|
||||
def unix_socket_supported? do
|
||||
case {:os.type, Integer.parse("#{:erlang.system_info(:otp_release)}")} do
|
||||
{{:unix, _}, {n, _}} when n >= 19 -> true
|
||||
_ -> false
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue