Remove 'unlisted' handling for now.

It's just too slow (over 1 second on small systems, haven't looked at
the queries in detail yet). We'll need some other way to handle it.
This commit is contained in:
lain 2018-05-13 12:07:11 +02:00
parent a5c9dd0a2a
commit 1027d1f696
2 changed files with 3 additions and 1 deletions

View File

@ -233,7 +233,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
q = fetch_activities_query(["https://www.w3.org/ns/activitystreams#Public"], opts)
q
|> restrict_unlisted()
# Too slow
# |> restrict_unlisted()
|> Repo.all()
|> Enum.reverse()
end

View File

@ -171,6 +171,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
end
describe "public fetch activities" do
@tag :skip
test "doesn't retrieve unlisted activities" do
user = insert(:user)
{:ok, unlisted_activity} = CommonAPI.post(user, %{"status" => "yeah", "visibility" => "unlisted"})