diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2024-05-18 11:30:25 +0200 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2024-05-18 11:30:25 +0200 |
commit | 2e76ceb5b4c8abf860f9d078c80ae0fcbe1a4ffd (patch) | |
tree | 6a803ea5efa8f6a93f04d657f3cb56a0b9ff5b17 /test/support/cachex_proxy.ex | |
parent | 1ed8ae2d8e86ed26d4e21f59e95995795bcb282b (diff) | |
parent | 99eab1fa2a39b7a7fba6cdbb92c01e9c7c81aa88 (diff) | |
download | pleroma-2e76ceb5b4c8abf860f9d078c80ae0fcbe1a4ffd.tar.gz pleroma-2e76ceb5b4c8abf860f9d078c80ae0fcbe1a4ffd.zip |
Merge remote-tracking branch 'origin/develop' into status-notification-type
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'test/support/cachex_proxy.ex')
-rw-r--r-- | test/support/cachex_proxy.ex | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/support/cachex_proxy.ex b/test/support/cachex_proxy.ex index 83ae5610f..8f27986a9 100644 --- a/test/support/cachex_proxy.ex +++ b/test/support/cachex_proxy.ex @@ -27,9 +27,15 @@ defmodule Pleroma.CachexProxy do defdelegate fetch!(cache, key, func), to: Cachex @impl true + defdelegate fetch(cache, key, func), to: Cachex + + @impl true defdelegate expire_at(cache, str, num), to: Cachex @impl true + defdelegate expire(cache, str, num), to: Cachex + + @impl true defdelegate exists?(cache, key), to: Cachex @impl true |