Backwards compatibility for OTP

This commit is contained in:
Mark Felder 2023-12-20 15:48:50 -05:00
parent 3c80c86437
commit 45150848fb
1 changed files with 18 additions and 1 deletions

View File

@ -127,7 +127,10 @@ defmodule Pleroma.Cluster do
defp start_slave({node_host, override_configs}) do
log(node_host, "booting federated VM")
{:ok, node} = :peer.start(%{host: "127.0.0.1", name: node_name(node_host), args: vm_args()})
{:ok, node} =
do_start_slave(%{host: "127.0.0.1", name: node_name(node_host), args: vm_args()})
add_code_paths(node)
load_apps_and_transfer_configuration(node, override_configs)
ensure_apps_started(node)
@ -219,4 +222,18 @@ defmodule Pleroma.Cluster do
|> Enum.at(0)
|> String.to_atom()
end
if System.otp_release() >= "25" do
@peer :peer
else
@peer :slave
end
defp do_start_slave(%{host: host, name: name, args: args} = opts) do
if System.otp_release() >= "25" do
@peer.start(opts)
else
@peer.start(host, name, args)
end
end
end