summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200905082737_rename_await_up_timeout_in_connections_pool.exs
blob: 22c40663c346da9c7c6ebc821f689b8906f7cb81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
defmodule Pleroma.Repo.Migrations.RenameAwaitUpTimeoutInConnectionsPool do
  use Ecto.Migration

  def change do
    with %Pleroma.ConfigDB{} = config <-
           Pleroma.ConfigDB.get_by_params(%{group: :pleroma, key: :connections_pool}),
         {timeout, value} when is_integer(timeout) <- Keyword.pop(config.value, :await_up_timeout) do
      config
      |> Ecto.Changeset.change(value: Keyword.put(value, :connect_timeout, timeout))
      |> Pleroma.Repo.update()
    end
  end
end