logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 90c4bed0af40911e0f8a28743814e4c07e91e9ae
parent: fcd3eca167508c1dde290f431353ace9d513de86
Author: lain <lain@soykaf.club>
Date:   Fri,  4 May 2018 21:15:39 +0200

Don't expire idempotency cache for five minutes.

Diffstat:

Mlib/pleroma/web/mastodon_api/mastodon_api_controller.ex2++
Mtest/web/mastodon_api/mastodon_api_controller_test.exs4++++
2 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex @@ -288,6 +288,8 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do fallback: fn _ -> CommonAPI.post(user, params) end ) + Cachex.expire(:user_cache, "idem:#{idempotency_key}", :timer.seconds(5 * 60)) + render(conn, StatusView, "status.json", %{activity: activity, for: user, as: :activity}) end diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs @@ -75,6 +75,10 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIControllerTest do "sensitive" => "false" }) + {:ok, ttl} = Cachex.ttl(:user_cache, "idem:#{idempotency_key}") + # 5 Minutes + assert ttl > :timer.seconds(5 * 60 - 1) + assert %{"content" => "cofe", "id" => id, "spoiler_text" => "2hu", "sensitive" => false} = json_response(conn_one, 200)