forked from AkkomaGang/akkoma
format
This commit is contained in:
parent
4e7e95a17e
commit
3252ed0f54
2 changed files with 6 additions and 1 deletions
|
@ -129,6 +129,7 @@ def bulk_post(data, :activities) do
|
||||||
{:error, %{reason: err}} ->
|
{:error, %{reason: err}} ->
|
||||||
Logger.error("Could not bulk put activity: #{err}")
|
Logger.error("Could not bulk put activity: #{err}")
|
||||||
:skipped
|
:skipped
|
||||||
|
|
||||||
{:ok, %{body: body}} ->
|
{:ok, %{body: body}} ->
|
||||||
IO.inspect(body)
|
IO.inspect(body)
|
||||||
:skipped
|
:skipped
|
||||||
|
@ -159,6 +160,7 @@ def bulk_post(data, :users) do
|
||||||
{:error, %{reason: err}} ->
|
{:error, %{reason: err}} ->
|
||||||
Logger.error("Could not bulk put users: #{err}")
|
Logger.error("Could not bulk put users: #{err}")
|
||||||
:skipped
|
:skipped
|
||||||
|
|
||||||
{:ok, %{body: body}} ->
|
{:ok, %{body: body}} ->
|
||||||
IO.inspect(body)
|
IO.inspect(body)
|
||||||
:skipped
|
:skipped
|
||||||
|
@ -188,6 +190,7 @@ def bulk_post(data, :hashtags) when is_list(data) do
|
||||||
{:error, %{reason: err}} ->
|
{:error, %{reason: err}} ->
|
||||||
Logger.error("Could not bulk put hashtags: #{err}")
|
Logger.error("Could not bulk put hashtags: #{err}")
|
||||||
:skipped
|
:skipped
|
||||||
|
|
||||||
{:ok, %{body: body}} ->
|
{:ok, %{body: body}} ->
|
||||||
IO.inspect(body)
|
IO.inspect(body)
|
||||||
:skipped
|
:skipped
|
||||||
|
|
|
@ -542,7 +542,9 @@ def handle_after_transaction(%Pleroma.Activity{data: %{"type" => "Create"}} = ac
|
||||||
Pleroma.Elasticsearch.put_by_id(:activity, activity.id)
|
Pleroma.Elasticsearch.put_by_id(:activity, activity.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_after_transaction(%Pleroma.Activity{data: %{"type" => "Delete", "deleted_activity_id" => id}}) do
|
def handle_after_transaction(%Pleroma.Activity{
|
||||||
|
data: %{"type" => "Delete", "deleted_activity_id" => id}
|
||||||
|
}) do
|
||||||
Pleroma.Elasticsearch.delete_by_id(:activity, id)
|
Pleroma.Elasticsearch.delete_by_id(:activity, id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue