20200905082737_rename_await_up_timeout_in_connections_pool.exs (649B)
- # Pleroma: A lightweight social networking server
- # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
- # SPDX-License-Identifier: AGPL-3.0-only
- 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