commit: bea43aba33de850346f53c1e6ee310bbcf74746b
parent 2bc6911139a3aee68bc29d3c9838c7730d5ae706
Author: Mark Felder <feld@feld.me>
Date: Thu, 29 Dec 2022 19:42:14 +0000
Fix rel="me"
Cachex for this was not started
Diffstat:
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
@@ -12,6 +12,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixed
+- rel="me" was missing its cache
+
### Removed
## 2.5.0 - 2022-12-23
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex
@@ -209,7 +209,8 @@ defmodule Pleroma.Application do
build_cachex("chat_message_id_idempotency_key",
expiration: chat_message_id_idempotency_key_expiration(),
limit: 500_000
- )
+ ),
+ build_cachex("rel_me", limit: 2500)
]
end