forked from AkkomaGang/akkoma
Add some debugging to federations.
This commit is contained in:
parent
3d714f85a8
commit
fe27b61a72
1 changed files with 6 additions and 2 deletions
|
@ -53,10 +53,14 @@ def publish(topic, user, activity) do
|
||||||
Logger.debug(fn -> "Pushing to #{sub.callback}" end)
|
Logger.debug(fn -> "Pushing to #{sub.callback}" end)
|
||||||
|
|
||||||
Task.start(fn ->
|
Task.start(fn ->
|
||||||
@httpoison.post(sub.callback, response, [
|
with {:ok, %{status_code: code}} <- @httpoison.post(sub.callback, response, [
|
||||||
{"Content-Type", "application/atom+xml"},
|
{"Content-Type", "application/atom+xml"},
|
||||||
{"X-Hub-Signature", "sha1=#{signature}"}
|
{"X-Hub-Signature", "sha1=#{signature}"}
|
||||||
])
|
]) 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)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue