diff options
author | lain <lain@soykaf.club> | 2024-08-01 08:53:29 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2024-08-01 08:53:29 +0000 |
commit | 36d469cf022ea66947a73ee4c762d7f459aceee4 (patch) | |
tree | 5f8824d56f10d1c94353afeb77833cd250e67369 /test/support/cachex_proxy.ex | |
parent | 7566b4a348c66fcea45bcb017979ece9c7b45b3a (diff) | |
parent | a5d32aab50abf725196fa782775a38907b4b2afa (diff) | |
download | pleroma-36d469cf022ea66947a73ee4c762d7f459aceee4.tar.gz pleroma-36d469cf022ea66947a73ee4c762d7f459aceee4.zip |
Merge branch 'release/2.7.0' into 'stable'
v2.7.0
See merge request pleroma/pleroma!4179
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 |