mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-12-23 00:26:30 +00:00
OTP26: Chase the :slave.start/3 deprecation
This commit is contained in:
parent
9896b64f54
commit
107f00d93f
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ defmodule Pleroma.Cluster do
|
|||
|
||||
defp start_slave({node_host, override_configs}) do
|
||||
log(node_host, "booting federated VM")
|
||||
{:ok, node} = :slave.start(~c"127.0.0.1", node_name(node_host), vm_args())
|
||||
{:ok, node} = :peer.start(%{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)
|
||||
|
|
Loading…
Reference in a new issue