forked from AkkomaGang/akkoma
Longer timeouts for outgoing federation.
This commit is contained in:
parent
42633406b3
commit
6a184115a2
3 changed files with 5 additions and 5 deletions
|
@ -132,7 +132,7 @@ def remote_users(%{data: %{"to" => to}}) do
|
|||
end
|
||||
|
||||
defp send_to_user(%{info: %{"salmon" => salmon}}, feed, poster) do
|
||||
poster.(salmon, feed, [{"Content-Type", "application/magic-envelope+xml"}])
|
||||
poster.(salmon, feed, [{"Content-Type", "application/magic-envelope+xml"}], timeout: 10000, recv_timeout: 20000)
|
||||
end
|
||||
|
||||
defp send_to_user(_,_,_), do: nil
|
||||
|
|
|
@ -54,9 +54,9 @@ def publish(topic, user, activity) do
|
|||
|
||||
Task.start(fn ->
|
||||
with {:ok, %{status_code: code}} <- @httpoison.post(sub.callback, response, [
|
||||
{"Content-Type", "application/atom+xml"},
|
||||
{"X-Hub-Signature", "sha1=#{signature}"}
|
||||
]) do
|
||||
{"Content-Type", "application/atom+xml"},
|
||||
{"X-Hub-Signature", "sha1=#{signature}"}
|
||||
], timeout: 10000, recv_timeout: 20000) do
|
||||
Logger.debug(fn -> "Pushed to #{sub.callback}, code #{code}" end)
|
||||
else e ->
|
||||
Logger.debug(fn -> "Couldn't push to #{sub.callback}, #{inspect(e)}" end)
|
||||
|
|
|
@ -84,7 +84,7 @@ test "it pushes an activity to remote accounts it's addressed to" do
|
|||
user = Repo.get_by(User, ap_id: activity.data["actor"])
|
||||
{:ok, user} = Pleroma.Web.WebFinger.ensure_keys_present(user)
|
||||
|
||||
poster = fn (url, data, headers) ->
|
||||
poster = fn (url, data, headers, options) ->
|
||||
assert url == "http://example.org/salmon"
|
||||
end
|
||||
Salmon.publish(user, activity, poster)
|
||||
|
|
Loading…
Reference in a new issue