Fix benchmarks

This commit is contained in:
Egor Kislitsyn 2019-10-21 15:55:28 +07:00
parent f726d953d5
commit 478f0883eb
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
2 changed files with 6 additions and 6 deletions

View File

@ -39,10 +39,12 @@ defmodule Pleroma.LoadTesting.Fetcher do
"muting_user" => user
}
following = User.following(user)
Benchee.run(%{
"User home timeline" => fn ->
Pleroma.Web.ActivityPub.ActivityPub.fetch_activities(
[user.ap_id | user.following],
following,
home_timeline_params
)
end,
@ -60,7 +62,7 @@ defmodule Pleroma.LoadTesting.Fetcher do
home_activities =
Pleroma.Web.ActivityPub.ActivityPub.fetch_activities(
[user.ap_id | user.following],
following,
home_timeline_params
)

View File

@ -45,15 +45,13 @@ defmodule Pleroma.LoadTesting.Generator do
%{
ap_id: ap_id,
follower_address: ap_id <> "/followers",
following_address: ap_id <> "/following",
following: [ap_id]
following_address: ap_id <> "/following"
}
else
%{
ap_id: User.ap_id(user),
follower_address: User.ap_followers(user),
following_address: User.ap_following(user),
following: [User.ap_id(user)]
following_address: User.ap_following(user)
}
end